parts/django/tests/regressiontests/urlpatterns_reverse/urls_error_handlers_callables.py
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 22:43:55 +0530
changeset 98 01c1e6966d86
parent 69 c6bca38c1cbf
permissions -rw-r--r--
created template for create_task

# Used by the ErrorHandlerResolutionTests test case.

from django.conf.urls.defaults import patterns
from views import empty_view

urlpatterns = patterns('')

handler404 = empty_view
handler500 = empty_view