You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix PyPy compatibility with super() calls in slotted dataclasses.
Apply closure cell repair mechanism to PyPy in addition to CPython.
The existing repair logic works correctly on PyPy since it uses
standard Python introspection APIs (__code__, __closure__, cell_contents).
Fixes TypeError: super(type, obj): obj must be an instance or subtype of type
when calling super() in methods of classes created with slots=True dataclass
transformations.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
0 commit comments