11 lines
243 B
Python
11 lines
243 B
Python
|
urlpatterns = []
|
||
|
|
||
|
handler400 = __name__ + '.good_handler'
|
||
|
handler403 = __name__ + '.good_handler'
|
||
|
handler404 = __name__ + '.good_handler'
|
||
|
handler500 = __name__ + '.good_handler'
|
||
|
|
||
|
|
||
|
def good_handler(request, exception=None, foo='bar'):
|
||
|
pass
|