diff options
Diffstat (limited to 'Lib/importlib')
| -rw-r--r-- | Lib/importlib/_bootstrap_external.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index c3ce4703a2..21449cb415 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -361,6 +361,7 @@ _code_type = type(_write_atomic.__code__)  #     Python 3.11a1 3456 (interleave cell args bpo-43693)  #     Python 3.11a1 3457 (Change localsplus to a bytes object bpo-43693)  #     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)  #  # MAGIC must change whenever the bytecode emitted by the compiler may no @@ -370,7 +371,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 = (3458).to_bytes(2, 'little') + b'\r\n' +MAGIC_NUMBER = (3459).to_bytes(2, 'little') + b'\r\n'  _RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little')  # For import.c  _PYCACHE = '__pycache__'  | 
