django1/tests/check_framework/urls/beginning_with_slash.py

6 lines
101 B
Python

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