(self, name)
| 125 | |
| 126 | class NamedInstanceClass(metaclass=NamedInstanceMetaclass): |
| 127 | def __init__(self, name): |
| 128 | if not hasattr(self.__class__, "instances"): |
| 129 | self.__class__.instances = {} |
| 130 | self.__class__.instances[name] = self |
| 131 | |
| 132 | @classmethod |
| 133 | def _ipython_key_completions_(cls): |
nothing calls this directly
no outgoing calls
no test coverage detected