django/tests/check_framework/urls/warning_in_include.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
214 B
Python
Raw Permalink Normal View History

from django.urls import include, path, re_path
urlpatterns = [
path(
"",
include(
[
re_path("^include-with-dollar$", include([])),
]
),
),
]