class documentation

class _FakeSignal:

View In Hierarchy

If blinker is unavailable, create a fake class with the same interface that allows sending of signals but will fail with an error on anything else. Instead of doing anything on send, it will just ignore the arguments and do nothing instead.
Method __init__ Undocumented
Method ​_fail Undocumented
Method send Undocumented
Instance Variable name Undocumented
def __init__(self, name, doc=None):

Undocumented

Parameters
name:strUndocumented
doc:t.Optional[str]Undocumented
def _fail(self, *args, **kwargs):

Undocumented

Parameters
*args:t.AnyUndocumented
**kwargs:t.AnyUndocumented
Returns
t.AnyUndocumented
def send(self, *args, **kwargs):

Undocumented

Parameters
*args:t.AnyUndocumented
**kwargs:t.AnyUndocumented
Returns
t.AnyUndocumented
name =

Undocumented