We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee3b3e commit 414ecfdCopy full SHA for 414ecfd
tests/urls.py
@@ -9,7 +9,7 @@
9
re_path(
10
r"^resolving1/(.+)/(.+)/$", views.resolving_view, name="positional-resolving"
11
),
12
- re_path(r"^resolving2/(?P<arg1>.+)/(?P<arg2>.+)/$", views.resolving_view),
+ path("resolving2/<path:arg1>/<path:arg2>/", views.resolving_view),
13
re_path(r"^resolving3/(.+)/$", views.resolving_view, {"arg2": "default"}),
14
re_path(r"^regular/(?P<title>.*)/$", views.regular_view),
15
re_path(r"^template_response/(?P<title>.*)/$", views.template_response_view),
0 commit comments