parts/django/tests/regressiontests/urlpatterns_reverse/urls_error_handlers_callables.py
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 11:20:57 +0530
changeset 69 c6bca38c1cbf
permissions -rw-r--r--
Added buildout stuff and made changes accordingly

# 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