summaryrefslogtreecommitdiff
path: root/tests/check_framework/urls/path_compatibility/contains_re_named_group.py
blob: 86897a4a4831dec9fae3ca88f1d4e7b873348d65 (plain)
1
2
3
4
5
from django.urls import path

urlpatterns = [
    path(r"(?P<named_group>\d+)", lambda x: x),
]