The type of the NoExtraItems singleton.
| 3131 | |
| 3132 | |
| 3133 | class _NoExtraItemsType(metaclass=_SingletonMeta): |
| 3134 | """The type of the NoExtraItems singleton.""" |
| 3135 | |
| 3136 | __slots__ = () |
| 3137 | |
| 3138 | def __new__(cls): |
| 3139 | return globals().get("NoExtraItems") or object.__new__(cls) |
| 3140 | |
| 3141 | def __repr__(self): |
| 3142 | return 'typing.NoExtraItems' |
| 3143 | |
| 3144 | def __reduce__(self): |
| 3145 | return 'NoExtraItems' |
| 3146 | |
| 3147 | NoExtraItems = _NoExtraItemsType() |
| 3148 | del _NoExtraItemsType |
no outgoing calls
no test coverage detected
searching dependent graphs…