mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Refs #23813 -- Moved URLconfs into module and tidied docstrings.
This commit is contained in:
parent
392f64842f
commit
f2975c021d
10 changed files with 35 additions and 53 deletions
7
tests/check_framework/urls/beginning_with_slash.py
Normal file
7
tests/check_framework/urls/beginning_with_slash.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from django.conf.urls import include, url
|
||||
|
||||
urlpatterns = [
|
||||
url('^', include([
|
||||
url(r'/starting-with-slash/$', lambda x: x),
|
||||
])),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue