1
0
mirror of https://github.com/django/django.git synced 2025-04-29 03:34:45 +00:00
django/tests/check_framework/urls_include.py
Alasdair Nicol fe3fc5210f Fixed #23813 -- Added checks for common URL pattern errors
Thanks jwa and lamby for the suggestions, and timgraham and jarshwah
for their reviews.
2015-09-21 23:46:21 +10:00

8 lines
146 B
Python

from django.conf.urls import include, url
urlpatterns = [
url(r'^', include([
url(r'^include-with-dollar$', include([])),
])),
]