(cls, /, *args, **kwds)
| 515 | __slots__ = ('__weakref__',) |
| 516 | |
| 517 | def __init_subclass__(cls, /, *args, **kwds): |
| 518 | if '_root' not in kwds: |
| 519 | raise TypeError("Cannot subclass special typing classes") |
| 520 | |
| 521 | |
| 522 | class _NotIterable: |
no outgoing calls
no test coverage detected