diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2021-11-10 18:08:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-10 18:08:28 (GMT) |
commit | 4cdeee5978ee3f8ea7fe95172ae04d866cd88177 (patch) | |
tree | 05bb2cf298351932ff37afd10b1befffc793d340 /Lib/importlib/_bootstrap_external.py | |
parent | 05fbd60147456d77a7aecf29dddd86c5bde5872f (diff) | |
download | cpython-4cdeee5978ee3f8ea7fe95172ae04d866cd88177.zip cpython-4cdeee5978ee3f8ea7fe95172ae04d866cd88177.tar.gz cpython-4cdeee5978ee3f8ea7fe95172ae04d866cd88177.tar.bz2 |
bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 4edcf9a..e492dc2 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -375,7 +375,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 = (3462).to_bytes(2, 'little') + b'\r\n' +MAGIC_NUMBER = (3463).to_bytes(2, 'little') + b'\r\n' _RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c _PYCACHE = '__pycache__' |