Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.1k
GH-100719: Remove redundantgi_code
field from generator object.#100749
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
@@ -1962,44 +1962,6 @@ initialize_locals(PyThreadState *tstate, PyFunctionObject *func, | |||
return -1; | |||
} | |||
/* Consumes references to func, locals and all the args */ |
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.
Why was this moved downwards?
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.
There was a small change, it now callsclear_thread_frame()
rather than_PyEvalFrameClearAndPop()
, so now needs to come afterclear_thread_frame
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.
mostly LGTM
There's one minor comment, but I'll leave the resolution up to you.
Uh oh!
There was an error while loading.Please reload this page.
I've converted this to a draft because I want to make the following changes first.
|
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
I'm removing the |
…3.12a6 and replaced with a C-API function.Seepython/cpython#100749
…3.12a6 and replaced with a C-API function.Seepython/cpython#100749
Uh oh!
There was an error while loading.Please reload this page.