]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Bump MAGIC_NUMBER to reflect change in JUMP_ABSOLUTE semantics. (GH-28829)
authorMark Shannon <mark@hotpy.org>
Sat, 9 Oct 2021 13:17:22 +0000 (14:17 +0100)
committerGitHub <noreply@github.com>
Sat, 9 Oct 2021 13:17:22 +0000 (14:17 +0100)
Lib/importlib/_bootstrap_external.py

index d624b73f38eb66b40af429b454795616f940f48b..c9692b542a5ccaceeb3df276d7e079558ba601b2 100644 (file)
@@ -363,6 +363,7 @@ _code_type = type(_write_atomic.__code__)
 #     Python 3.11a1 3458 (imported objects now don't use LOAD_METHOD/CALL_METHOD)
 #     Python 3.11a1 3459 (PEP 657: add end line numbers and column offsets for instructions)
 #     Python 3.11a1 3460 (Add co_qualname field to PyCodeObject bpo-44530)
+#     Python 3.11a1 3461 (JUMP_ABSOLUTE must jump backwards)
 
 #
 # MAGIC must change whenever the bytecode emitted by the compiler may no
@@ -372,7 +373,7 @@ _code_type = type(_write_atomic.__code__)
 # Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
 # in PC/launcher.c must also be updated.
 
-MAGIC_NUMBER = (3460).to_bytes(2, 'little') + b'\r\n'
+MAGIC_NUMBER = (3461).to_bytes(2, 'little') + b'\r\n'
 _RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little')  # For import.c
 
 _PYCACHE = '__pycache__'