8 lines
167 B
Python
8 lines
167 B
Python
|
from django.conf.urls.defaults import patterns
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^noslash$', 'view'),
|
||
|
(r'^slash/$', 'view'),
|
||
|
(r'^needsquoting#/$', 'view'),
|
||
|
)
|