-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
bpo-45126: Fix ref. leak in sqlite3.Connection.__init__
#28231
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-45126: Fix ref. leak in sqlite3.Connection.__init__
#28231
Conversation
Although this could be fixed by a decref after the audit check, it is not immediately clear why only |
🤖 New build scheduled with the buildbot fleet by @erlend-aasland for commit c1f8b43 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
|
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase And if you don't make the requested changes, you will be poked with soft cushions! |
Co-authored-by: Dong-hee Na <[email protected]>
I have made the requested changes; please review again |
Thanks for making the requested changes! @corona10: please review the changes made to this pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Failed CIs doesn't look related to change.
Thanks @erlend-aasland for the PR, and @corona10 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9, 3.10. |
Sorry, @erlend-aasland and @corona10, I could not cleanly backport this to |
Sorry @erlend-aasland and @corona10, I had trouble checking out the |
@erlend-aasland Cherry-pick please. |
I'll fix the backports. Thank you so much for reviewing. Highly appreciated. |
…honGH-28231). (cherry picked from commit c78d5ca) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
GH-28298 is a backport of this pull request to the 3.10 branch. |
We backport to 3.9 from GH-28298. |
Sync with main bco. pythonGH-28231
…honGH-28231). (pythonGH-28298) (cherry picked from commit aa6dd54) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
…28231). (GH-28298) (cherry picked from commit aa6dd54) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
'database_obj' no longer leaks if audit fails.
Resolves #89289
https://bugs.python.org/issue45126