module documentation
(source)

Undocumented

Function argument​_elide​_name Undocumented
Function special​_function​_elide​_names Undocumented
Constant BINARY​_MAGIC​_METHODS Undocumented
Constant MAGIC​_METHODS Undocumented
Constant MAGIC​_METHODS​_ALLOWING​_KWARGS Undocumented
Constant MAGIC​_METHODS​_POS​_ARGS​_ONLY Undocumented
Constant _NON​_BINARY​_MAGIC​_METHODS Undocumented
def argument_elide_name(name): (source)

Undocumented

Parameters
name:Optional[str]Undocumented
Returns
boolUndocumented
def special_function_elide_names(name): (source)

Undocumented

Parameters
name:strUndocumented
Returns
boolUndocumented
BINARY_MAGIC_METHODS: set[str] = (source)

Undocumented

Value
set(['__add__',
     '__and__',
     '__cmp__',
     '__divmod__',
     '__div__',
     '__eq__',
     '__floordiv__',
...
MAGIC_METHODS_ALLOWING_KWARGS: set[str] = (source)

Undocumented

Value
set(['__init__', '__init_subclass__', '__new__', '__call__', '__setattr__'])
MAGIC_METHODS_POS_ARGS_ONLY = (source)
_NON_BINARY_MAGIC_METHODS: set[str] = (source)

Undocumented

Value
set(['__abs__',
     '__call__',
     '__complex__',
     '__contains__',
     '__del__',
     '__delattr__',
     '__delitem__',
...