Skip to content

Commit 32c2ae0

Browse files
committed
Fix magic number
1 parent 172a013 commit 32c2ae0

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
@@ -381,7 +381,7 @@ def _write_atomic(path, data, mode=0o666):
381381
# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
382382
# in PC/launcher.c must also be updated.
383383

384-
MAGIC_NUMBER = (3467).to_bytes(2, 'little') + b'\r\n'
384+
MAGIC_NUMBER = (3466).to_bytes(2, 'little') + b'\r\n'
385385
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
386386

387387
_PYCACHE = '__pycache__'

0 commit comments

Comments
 (0)