class documentation

class ContextVar:

View In Hierarchy

A fake ContextVar based on the previous greenlet/threading ident function. Used on Python 3.6, eventlet, and old versions of gevent.
Method __init__ Undocumented
Method get Undocumented
Method set Undocumented
Instance Variable storage Undocumented
def __init__(self, _name):

Undocumented

Parameters
​_name:strUndocumented
def get(self, default):

Undocumented

Parameters
default:t.Dict[str, t.Any]Undocumented
Returns
t.Dict[str, t.Any]Undocumented
def set(self, value):

Undocumented

Parameters
value:t.Dict[str, t.Any]Undocumented
storage: t.Dict[int, t.Dict[str, t.Any]] =

Undocumented