Method: flask.app.Flask.__call__
Calls: 423, Exceptions: 18, Paths: 1Back
Path 1: 423 calls (1.0)
dict (423)
run_wsgi_app.
ClosingIterator (395) None (18) FileWrapper (10)
TypeError (5) ZeroDivisionError (3) ValueError (2) BadRequestKeyError (2) KeyboardInterrupt (1) BadRequest (1) NotFound (1) DebugFilesKeyError (1) For...
1def __call__(self, environ: dict, start_response: t.Callable) -> t.Any:
2 """The WSGI server calls the Flask application object as the
3 WSGI application. This calls :meth:`wsgi_app`, which can be
4 wrapped to apply middleware.
5 """
6 return self.wsgi_app(environ, start_response)