8000 bpo-44313: bump up magic (#26983) · python/cpython@0d7f61d · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d7f61d

Browse files
authored
bpo-44313: bump up magic (#26983)
1 parent ddd5f36 commit 0d7f61d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/importlib/_bootstrap_external.py

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

373-
MAGIC_NUMBER = (3457).to_bytes(2, 'little') + b'\r\n'
373+
MAGIC_NUMBER = (3458).to_bytes(2, 'little') + b'\r\n'
374374
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
375375

376376
_PYCACHE = '__pycache__'

Python/importlib_external.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0