Ran into this issue while testing the `typing` module in the 3.5 stdlib: ```Python class TypingMeta(type): def __new__(cls, name, bases, namespace, **kwargs): assert "_root" in kwargs class _TypingBase(metaclass=TypingMeta, _root=True): pass ```
Ran into this issue while testing the
typingmodule in the 3.5 stdlib: