10000 GH-128534: Instrument branches for `async for` loops. by markshannon · Pull Request #130569 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-128534: Instrument branches for async for loops. #130569

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

Merged
merged 3 commits into from
Feb 27, 2025
Merged
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
Bump magic number
  • Loading branch information
markshannon committed Feb 26, 2025
commit 29ac697ea4d2be579edbdcdb77b8a8ebd14b7ed2
3 changes: 2 additions & 1 deletion Include/internal/pycore_magic_number.h
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ Known values:
Python 3.14a5 3614 (Add BINARY_OP_EXTEND)
Python 3.14a5 3615 (CALL_FUNCTION_EX always take a kwargs argument)
Python 3.14a5 3616 (Remove BINARY_SUBSCR and family. Make them BINARY_OPs)
Python 3.14a6 3617 (Branch monitoring for async for loops)

Python 3.15 will start with 3650

Expand All @@ -281,7 +282,7 @@ PC/launcher.c must also be updated.

*/

#define PYC_MAGIC_NUMBER 3616
#define PYC_MAGIC_NUMBER 3617
/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
(little-endian) and then appending b'\r\n'. */
#define PYC_MAGIC_NUMBER_TOKEN \
Expand Down
Loading
0