-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-1635741: Port _thread to multiphase init #23811
Conversation
Port the _thread extension module to the multiphase initialization API (PEP 489) and convert its static types to heap types.
Sadly, the following test leaks:
Output:
I will investigate later why it leaks. |
Workaround for the leak:
|
Example of leaking tests:
These tests run |
I fixed the leak by adding a traverse function to the lock type (and convert it to a GC type). |
Port the _thread extension module to the multiphase initialization API (PEP 489) and convert its static types to heap types. Add a traverse function to the lock type, so the garbage collector can break reference cycles.
Port the _thread extension module to the multiphase initialization
API (PEP 489) and convert its static types to heap types.
https://bugs.python.org/issue1635741