1
0
mirror of https://github.com/django/django.git synced 2025-10-12 16:29:14 +00:00

8 lines
242 B
Python

from django.conf.urls.defaults import patterns
urlpatterns = patterns('',
(r'^middleware/customurlconf/noslash$', 'view'),
(r'^middleware/customurlconf/slash/$', 'view'),
(r'^middleware/customurlconf/needsquoting#/$', 'view'),
)