django/tests/check_framework/urls/beginning_with_slash.py

6 lines
101 B
Python
Raw Normal View History

from django.conf.urls import url
urlpatterns = [
url(r'/starting-with-slash/$', lambda x: x),
]