Skip to content

Commit 381f3d3

Browse files
committed
Fix magic number
1 parent 23877ec commit 381f3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/importlib/_bootstrap_external.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def _write_atomic(path, data, mode=0o666):
394394
# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
395395
# in PC/launcher.c must also be updated.
396396

397-
MAGIC_NUMBER = (3476).to_bytes(2, 'little') + b'\r\n'
397+
MAGIC_NUMBER = (3475).to_bytes(2, 'little') + b'\r\n'
398398
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
399399

400400
_PYCACHE = '__pycache__'

0 commit comments

Comments
 (0)