parts/django/tests/regressiontests/urlpatterns_reverse/urls_error_handlers_callables.py
author Nishanth Amuluru <nishanth@fossee.in>
Tue, 11 Jan 2011 12:30:10 +0530
changeset 378 8fcde6f8f750
parent 307 c6bca38c1cbf
permissions -rw-r--r--
added view_user functionality

# 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