MCPcopy Index your code
hub / github.com/python/cpython / _NoExtraItemsType

Class _NoExtraItemsType

Lib/typing.py:3133–3145  ·  view source on GitHub ↗

The type of the NoExtraItems singleton.

Source from the content-addressed store, hash-verified

3131
3132
3133class _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
3147NoExtraItems = _NoExtraItemsType()
3148del _NoExtraItemsType

Callers 1

typing.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…