mirror of
https://github.com/django/django.git
synced 2025-11-03 05:13:23 +00:00
Fixed #13260 -- Quoted arguments interpolated in URLs in reverse.
This commit is contained in:
parent
4485b2a74c
commit
31b5275235
6 changed files with 38 additions and 16 deletions
|
|
@ -40,7 +40,7 @@ urlpatterns = patterns('',
|
|||
name="headlines"),
|
||||
url(r'^windows_path/(?P<drive_name>[A-Z]):\\(?P<path>.+)/$', empty_view,
|
||||
name="windows"),
|
||||
url(r'^special_chars/(.+)/$', empty_view, name="special"),
|
||||
url(r'^special_chars/(?P<chars>.+)/$', empty_view, name="special"),
|
||||
url(r'^(?P<name>.+)/\d+/$', empty_view, name="mixed"),
|
||||
url(r'^repeats/a{1,2}/$', empty_view, name="repeats"),
|
||||
url(r'^repeats/a{2,4}/$', empty_view, name="repeats2"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue