module documentation

Undocumented

Class CallableSettingWrapper Object to wrap callable appearing in settings. * Not to call in the debug page (#21345). * Not to break the debug page if the callable forbidding to set attributes (#23070).
Class ExceptionReporter Organize and coordinate reporting on exceptions.
Class SafeExceptionReporterFilter Use annotations made by the sensitive_post_parameters and sensitive_variables decorators to filter out sensitive information.
Exception ExceptionCycleWarning Undocumented
Function builtin_template_path Return a path to a builtin template.
Function default_urlconf Create an empty URLconf 404 error response.
Function get_caller Undocumented
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.
Constant DEBUG_ENGINE Undocumented
def builtin_template_path(name): (source)

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): (source)

Create an empty URLconf 404 error response.

def get_caller(request): (source)

Undocumented

@functools.lru_cache
def get_default_exception_reporter_filter(): (source)

Undocumented

def get_exception_reporter_class(request): (source)

Undocumented

def get_exception_reporter_filter(request): (source)

Undocumented

def technical_404_response(request, exception): (source)

Create a technical 404 error response. `exception` is the Http404.

def technical_500_response(request, exc_type, exc_value, tb, status_code=500): (source)

Create a technical server error response. The last three arguments are the values returned from sys.exc_info() and friends.

DEBUG_ENGINE = (source)

Undocumented

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