class documentation

class AppContext:

View In Hierarchy

The application context binds an application object implicitly to the current thread or greenlet, similar to how the RequestContext binds request information. The application context is also implicitly created if a request context is created but the application is not on top of the individual application context.
Method pop Pops the app context.
Method push Binds the app context to the current context.
Method __enter__ Undocumented
Method __exit__ Undocumented
Method __init__ Undocumented
Instance Variable ​_refcnt Undocumented
Instance Variable app Undocumented
Instance Variable g Undocumented
Instance Variable url​_adapter Undocumented
def pop(self, exc=_sentinel):
Pops the app context.
Parameters
exc:t.Optional[BaseException]Undocumented
def push(self):
Binds the app context to the current context.
def __enter__(self):

Undocumented

Returns
AppContextUndocumented
def __exit__(self, exc_type, exc_value, tb):

Undocumented

Parameters
exc​_type:typeUndocumented
exc​_value:BaseExceptionUndocumented
tb:TracebackTypeUndocumented
def __init__(self, app):

Undocumented

Parameters
app:FlaskUndocumented
_refcnt: int =

Undocumented

app =

Undocumented

g =

Undocumented

url_adapter =

Undocumented