PageRenderTime 39ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/regressiontests/middleware/urls.py

https://code.google.com/p/mango-py/
Python | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | a19f0ea126fdb4c8516d274cb51bd84e MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from django.conf.urls.defaults import patterns
  2. urlpatterns = patterns('',
  3. (r'^noslash$', 'view'),
  4. (r'^slash/$', 'view'),
  5. (r'^needsquoting#/$', 'view'),
  6. )