bpo-44313: bump up magic (#26983)

This commit is contained in:
Batuhan Taskaya 2021-07-01 22:25:10 +03:00 committed by GitHub
parent ddd5f36971
commit 0d7f61ddb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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__'