-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
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-38150 Fix refleak in the finalizer of a _testcapimodule type #16115
Conversation
Since the build bots don't run the test leaks, here's a local repro that is now working:
|
@eduardo-elizondo yep, I am waiting for the green lanterns from Travis and I will merge your PR. need to test on my laptop but it is already working on your PR ;-) |
works fine on my laptop, need to wait for Travis |
@eduardo-elizondo: Status check is done, and it's a success ✅ . |
Thanks @eduardo-elizondo for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8. |
Sorry @eduardo-elizondo, I had trouble checking out the |
pythonGH-16115) The PyLong created in the finalizer was not being cleaned up https://bugs.python.org/issue38150 Automerge-Triggered-By: @matrixise (cherry picked from commit a67ac2f) Co-authored-by: Eddie Elizondo <eelizondo@fb.com>
GH-16118 is a backport of this pull request to the 3.8 branch. |
…pe (GH-16115) (GH-16118) The PyLong created in the finalizer was not being cleaned up https://bugs.python.org/issue38150 Automerge-Triggered-By: @matrixise (cherry picked from commit a67ac2f) Co-authored-by: Eddie Elizondo <eelizondo@fb.com>
@matrixise Thanks for the quick review! |
The PyLong created in the finalizer was not being cleaned up
https://bugs.python.org/issue38150
Automerge-Triggered-By: @matrixise