8000 [3.10] bpo-43760: Ensure that older Cython generated code compiles under 3.10. by markshannon · Pull Request #28474 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.10] bpo-43760: Ensure that older Cython generated code compiles under 3.10. #28474

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

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move new field to end of struct for better binary compatibility.
  • Loading branch information
markshannon committed Sep 21, 2021
commit 6eb2c126db2e0ba9e489b04581d033c7962b0d67
2 changes: 1 addition & 1 deletion Include/cpython/pystate.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ struct _ts {
This is to prevent the actual trace/profile code from being recorded in
the trace/profile. */
int tracing;
int use_tracing;

/* Pointer to current CFrame in the C stack frame of the currently,
* or most recently, executing _PyEval_EvalFrameDefault. */
Expand Down Expand Up @@ -149,6 +148,7 @@ struct _ts {
uint64_t id;

CFrame root_cframe;
int use_tracing;

/* XXX signal handlers should also be here */

Expand Down
0