File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Misc/NEWS.d/next/Core_and_Builtins Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ Known values:
270270 Python 3.14a5 3615 (CALL_FUNCTION_EX always take a kwargs argument)
271271 Python 3.14a5 3616 (Remove BINARY_SUBSCR and family. Make them BINARY_OPs)
272272 Python 3.14a6 3617 (Branch monitoring for async for loops)
273+ Python 3.14a6 3618 (Add oparg to END_ASYNC_FOR)
273274
274275 Python 3.15 will start with 3650
275276
@@ -282,7 +283,7 @@ PC/launcher.c must also be updated.
282283
283284*/
284285
285- #define PYC_MAGIC_NUMBER 3617
286+ #define PYC_MAGIC_NUMBER 3618
286287/* This is equivalent to converting PYC_MAGIC_NUMBER to 2 bytes
287288 (little-endian) and then appending b'\r\n'. */
288289#define PYC_MAGIC_NUMBER_TOKEN \
Original file line number Diff line number Diff line change 1+ Ensure that both and left branches have same source for ``async for `` loops.
2+ Add these branches to the ``co_branches() `` iterator.
You can’t perform that action at this time.
0 commit comments