summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/name_with_colon.py
blob: 273c99324cb2363d10489431110acb3d4e994d23 (plain)
1
2
3
4
5
from django.urls import re_path

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