PageRenderTime 3ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/tests/regressiontests/middleware/extra_urls.py

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