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
[Python] Fix exceptions from __del__ during interpreter shutdown
`StructureType`, `EnumerationType`, and `NamedTypeReferenceType` called
`super(Class, self)` in `__del__`. The interpreter nulls that module-global
class name during teardown, so finalizers running at shutdown raised a
`TypeError`. Switch to zero-arg `super()` here and across the rest of
the Python API.
0 commit comments