This website requires JavaScript.
Explore
Help
Sign In
p31829507
/
django
mirror of
https://github.com/django/django.git
Watch
1
Star
0
Fork
You've already forked django
0
Code
Issues
Projects
Releases
Wiki
Activity
7f4db2d82b
django
/
tests
/
user_commands
/
urls.py
6 lines
104 B
Python
Raw
Normal View
History
Unescape
Escape
Updated test URL patterns to use path() and re_path().
2018-12-08 06:52:28 +08:00
from
django
.
urls
import
path
Fixed #16734 -- Set script prefix even outside of requests Thanks Tim Graham for the review.
2015-10-24 03:02:34 +08:00
urlpatterns
=
[
Updated test URL patterns to use path() and re_path().
2018-12-08 06:52:28 +08:00
path
(
'
some/url/
'
,
lambda
req
:
req
,
name
=
'
some_url
'
)
,
Fixed #16734 -- Set script prefix even outside of requests Thanks Tim Graham for the review.
2015-10-24 03:02:34 +08:00
]