Skip to content

Commit 6162a0e

Browse files
authored
Fix incorrect versions in magic number comments (GH-101301)
1 parent 19f90d6 commit 6162a0e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Lib/importlib/_bootstrap_external.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -423,14 +423,14 @@ def _write_atomic(path, data, mode=0o666):
423423
# Python 3.12a1 3507 (Set lineno of module's RESUME to 0)
424424
# Python 3.12a1 3508 (Add CLEANUP_THROW)
425425
# Python 3.12a1 3509 (Conditional jumps only jump forward)
426-
# Python 3.12a1 3510 (FOR_ITER leaves iterator on the stack)
427-
# Python 3.12a1 3511 (Add STOPITERATION_ERROR instruction)
428-
# Python 3.12a1 3512 (Remove all unused consts from code objects)
429-
# Python 3.12a1 3513 (Add CALL_INTRINSIC_1 instruction, removed STOPITERATION_ERROR, PRINT_EXPR, IMPORT_STAR)
430-
# Python 3.12a1 3514 (Remove ASYNC_GEN_WRAP, LIST_TO_TUPLE, and UNARY_POSITIVE)
431-
# Python 3.12a1 3515 (Embed jump mask in COMPARE_OP oparg)
432-
# Python 3.12a1 3516 (Add COMPARE_AND_BRANCH instruction)
433-
# Python 3.12a1 3517 (Change YIELD_VALUE oparg to exception block depth)
426+
# Python 3.12a2 3510 (FOR_ITER leaves iterator on the stack)
427+
# Python 3.12a2 3511 (Add STOPITERATION_ERROR instruction)
428+
# Python 3.12a2 3512 (Remove all unused consts from code objects)
429+
# Python 3.12a4 3513 (Add CALL_INTRINSIC_1 instruction, removed STOPITERATION_ERROR, PRINT_EXPR, IMPORT_STAR)
430+
# Python 3.12a4 3514 (Remove ASYNC_GEN_WRAP, LIST_TO_TUPLE, and UNARY_POSITIVE)
431+
# Python 3.12a5 3515 (Embed jump mask in COMPARE_OP oparg)
432+
# Python 3.12a5 3516 (Add COMPARE_AND_BRANCH instruction)
433+
# Python 3.12a5 3517 (Change YIELD_VALUE oparg to exception block depth)
434434

435435
# Python 3.13 will start with 3550
436436

0 commit comments

Comments
 (0)