module documentation

Undocumented

Class ​Exception​Reporter Organize and coordinate reporting on exceptions.
Class ​Safe​Exception​Reporter​Filter Use annotations made by the sensitive_post_parameters and sensitive_variables decorators to filter out sensitive information.
Constant DEBUG​_ENGINE Undocumented
Class ​Callable​Setting​Wrapper No summary
Class ​Exception​Cycle​Warning Undocumented
Function builtin​_template​_path Return a path to a builtin template.
Function default​_urlconf Create an empty URLconf 404 error response.
Function get​_default​_exception​_reporter​_filter Undocumented
Function get​_exception​_reporter​_class Undocumented
Function get​_exception​_reporter​_filter Undocumented
Function technical​_404​_response Create a technical 404 error response. exception is the Http404.
Function technical​_500​_response Create a technical server error response. The last three arguments are the values returned from sys.exc_info() and friends.
DEBUG_ENGINE =

Undocumented

Value
Engine(debug=True, libraries={'i18n': 'django.templatetags.i18n'})
def builtin_template_path(name):

Return a path to a builtin template.

Avoid calling this function at the module level or in a class-definition because __file__ may not exist, e.g. in frozen environments.

def default_urlconf(request):
Create an empty URLconf 404 error response.
@functools.lru_cache()
def get_default_exception_reporter_filter():

Undocumented

def get_exception_reporter_class(request):

Undocumented

def get_exception_reporter_filter(request):

Undocumented

def technical_404_response(request, exception):
Create a technical 404 error response. exception is the Http404.
def technical_500_response(request, exc_type, exc_value, tb, status_code=500):
Create a technical server error response. The last three arguments are the values returned from sys.exc_info() and friends.