summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorBatuhan Taskaya <batuhan@python.org>2021-07-01 19:25:10 (GMT)
committerGitHub <noreply@github.com>2021-07-01 19:25:10 (GMT)
commit0d7f61ddb074659d8c18c8f5ac86a6a18e41f9e5 (patch)
treeb2f7d21d3fb3050ae8f2293e2131a2f8487e270e /Lib/importlib
parentddd5f36971e2ffe20cc3f4b408425c847d168646 (diff)
downloadcpython-0d7f61ddb074659d8c18c8f5ac86a6a18e41f9e5.zip
cpython-0d7f61ddb074659d8c18c8f5ac86a6a18e41f9e5.tar.gz
cpython-0d7f61ddb074659d8c18c8f5ac86a6a18e41f9e5.tar.bz2
bpo-44313: bump up magic (#26983)
Diffstat (limited to 'Lib/importlib')
-rw-r--r--Lib/importlib/_bootstrap_external.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py
index c8b8ece..c3ce470 100644
--- a/Lib/importlib/_bootstrap_external.py
+++ b/Lib/importlib/_bootstrap_external.py
@@ -370,7 +370,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 = (3457).to_bytes(2, 'little') + b'\r\n'
+MAGIC_NUMBER = (3458).to_bytes(2, 'little') + b'\r\n'
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
_PYCACHE = '__pycache__'