quest(self, f: Any): ... def after_request(self, f: Any): ... def after_app_request(self, f: Any): ... def teardown_request(self, f: Any): ... def teardown_app_request(self, f: Any): ... def context_processor(self, f: Any): ... def app_context_processor(self, f: Any): ... def app_errorhandler(self, code: Any): ... def url_value_preprocessor(self, f: Any): ... def url_defaults(self, f: Any): ... def app_url_value_preprocessor(self, f: Any): ... def app_url_defaults(self, f: Any): ... def errorhandler( self, code_or_exception: Union[int, Type[Exception]] ) -> Callable[[Callable[..., _T]], Callable[..., _T]]: ... def register_error_handler(self, code_or_exception: Union[int, Type[Exception]], f: Callable[..., Any]) -> None: ... PK