django/tests/check_framework/urls_name.py

14 lines
230 B
Python

from django.conf.urls import include, url
from django.http import HttpResponse
def view(request):
return HttpResponse('')
urlpatterns = [
url('^', include([
url(r'^$', view, name='name_with:colon'),
])),
]