Skip to content

Commit 73b08aa

Browse files
committed
bump magic number
1 parent 60ed85e commit 73b08aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/importlib/_bootstrap_external.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ def _write_atomic(path, data, mode=0o666):
463463
# Python 3.13a1 3564 (Removed oparg from YIELD_VALUE, changed oparg values of RESUME)
464464
# Python 3.13a1 3565 (Oparg of YIELD_VALUE indicates whether it is in a yield-from)
465465
# Python 3.13a1 3566 (Emit JUMP_NO_INTERRUPT instead of JUMP for non-loop no-lineno cases)
466+
# Python 3.13a1 3567 (Reimplement line number propagation by the compiler)
466467

467468
# Python 3.14 will start with 3600
468469

@@ -479,7 +480,7 @@ def _write_atomic(path, data, mode=0o666):
479480
# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
480481
# in PC/launcher.c must also be updated.
481482

482-
MAGIC_NUMBER = (3566).to_bytes(2, 'little') + b'\r\n'
483+
MAGIC_NUMBER = (3567).to_bytes(2, 'little') + b'\r\n'
483484

484485
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
485486

0 commit comments

Comments
 (0)