cpython
cpython copied to clipboard
gh-117110: Fix subclasses of typing.Any with custom constructors
The superclass of typing.Any is object and object.__new__(...) doesn't accept additional argument beyond the first argument cls.
- Issue: gh-117110