PageRenderTime 35ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/tests/regressiontests/urlpatterns_reverse/urls_error_handlers_callables.py

https://code.google.com/p/mango-py/
Python | 9 lines | 6 code | 2 blank | 1 comment | 0 complexity | c0fadff3538d297ad1341400390dd75b MD5 | raw file
Possible License(s): BSD-3-Clause
  1. # Used by the ErrorHandlerResolutionTests test case.
  2. from django.conf.urls.defaults import patterns
  3. from views import empty_view
  4. urlpatterns = patterns('')
  5. handler404 = empty_view
  6. handler500 = empty_view