Skip to content

Commit f8eb10a

Browse files
committed
Bump magic and add news
1 parent e6a91ae commit f8eb10a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Include/internal/pycore_magic_number.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 \
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Ensure that both and left branches have same source for ``async for`` loops.
2+
Add these branches to the ``co_branches()`` iterator.

0 commit comments

Comments
 (0)