mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bump the bytecode magic number (GH-25225)
This commit is contained in:
parent
5143fd15b4
commit
50616223d1
2 changed files with 2 additions and 2 deletions
|
@ -325,7 +325,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 = (3435).to_bytes(2, 'little') + b'\r\n'
|
||||
MAGIC_NUMBER = (3436).to_bytes(2, 'little') + b'\r\n'
|
||||
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
|
||||
|
||||
_PYCACHE = '__pycache__'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue