1
0
mirror of https://github.com/django/django.git synced 2024-11-20 08:24:58 +00:00
django/tests/urlpatterns_reverse/urls_error_handlers_callables.py

13 lines
225 B
Python
Raw Normal View History

# Used by the ErrorHandlerResolutionTests test case.
from django.conf.urls import patterns
from .views import empty_view
urlpatterns = patterns('')
handler400 = empty_view
handler404 = empty_view
handler500 = empty_view