summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/path_compatibility/matched_angle_brackets.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/check_framework/urls/path_compatibility/matched_angle_brackets.py')
-rw-r--r--tests/check_framework/urls/path_compatibility/matched_angle_brackets.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/check_framework/urls/path_compatibility/matched_angle_brackets.py b/tests/check_framework/urls/path_compatibility/matched_angle_brackets.py
new file mode 100644
index 0000000000..de3076942d
--- /dev/null
+++ b/tests/check_framework/urls/path_compatibility/matched_angle_brackets.py
@@ -0,0 +1,5 @@
+from django.urls import path
+
+urlpatterns = [
+ path("<int:angle_bracket>", lambda x: x),
+]