mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +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,6 +1,6 @@
|
|||
from django.conf.urls import url
|
||||
from django.http import HttpResponse
|
||||
from django.urls import path
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', lambda request: HttpResponse('root is here')),
|
||||
path('', lambda request: HttpResponse('root is here')),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue