mirror of
https://github.com/django/django.git
synced 2025-07-24 05:36:15 +00:00
Updated test URL patterns to use path() and re_path().
This commit is contained in:
parent
1136d57f01
commit
043bd70942
104 changed files with 692 additions and 673 deletions
|
@ -1,5 +1,5 @@
|
|||
from django.conf.urls import include, url
|
||||
from django.urls import include, re_path
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^include-with-dollar$', include([])),
|
||||
re_path('^include-with-dollar$', include([])),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue