-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
gh-128991: Release the enter frame reference within bdb callback #128992
gh-128991: Release the enter frame reference within bdb callback #128992
Conversation
In theory, this is not a bug fix and should not be backported. However, this is required for #125549. Also it would be nice if we don't hold the frame reference for too long in previous versions. |
Thanks @gaogaotiantian for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
Sorry, @gaogaotiantian, I could not cleanly backport this to
|
Sorry, @gaogaotiantian, I could not cleanly backport this to
|
GH-129002 is a backport of this pull request to the 3.13 branch. |
…callback (pythonGH-128992) * Release the enter frame reference within bdb callback * 📜🤖 Added by blurb_it. --------- (cherry picked from commit 61b35f7) Co-authored-by: Tian Gao <[email protected]> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
GH-129003 is a backport of this pull request to the 3.12 branch. |
Use a context manager to release the enter frame reference, instead of doing it in
continue
.