blob: 71d09d8861574626e9ca0454e0d5ccf90162bca3 (
about) (
plain)
1
2
3
4
5
6
7
|
"""Handlers for HTTP 5** errors."""
__all__ = ["http_5xx_error_handlers"]
def http_5xx_error_handlers() -> dict:
"""Return handlers for HTTP errors in the 500-599 range"""
return {}
|