-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
test_threading is leaking references #81307
Comments
https://buildbot.python.org/all/#/builders/1/builds/601 OK (skipped=1) |
❯ ./python -m test test_threading -m test_excepthook_thread_None -R : == Tests result: FAILURE == 1 test failed: Total duration: 159 ms |
The problem here is that there is a reference cycle with threading.ExceptHookArgs but structseq objects are not tracked by the GC. |
Łukasz, this PR will fix the x86 Gentoo Refleaks 3.x and friends, so I would recommend landing this before the release. |
You forgot to call PyObject_GC_UnTrack() in structseq_dealloc(), no? |
Yep, thanks for the catch! |
Thanks. commit 3caf4de
-- FYI I also fixed test_threading: commit cdce057
|
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: