Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/check_framework/urls/name_with_colon.py
blob: e761035ee17ed7e31f0ec9b0e147b877bc651e83 (plain)
1
2
3
4
5
6
7
from django.conf.urls import include, url

urlpatterns = [
    url('^', include([
        url(r'^$', lambda x: x, name='name_with:colon'),
    ])),
]