mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +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
|
# Whenever MAGIC_NUMBER is changed, the ranges in the magic_values array
|
||||||
# in PC/launcher.c must also be updated.
|
# 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
|
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
|
||||||
|
|
||||||
_PYCACHE = '__pycache__'
|
_PYCACHE = '__pycache__'
|
||||||
|
|
2
Python/importlib_external.h
generated
2
Python/importlib_external.h
generated
|
@ -315,7 +315,7 @@ const unsigned char _Py_M__importlib_bootstrap_external[] = {
|
||||||
99,152,0,0,0,115,38,0,0,0,16,5,6,1,22,1,
|
99,152,0,0,0,115,38,0,0,0,16,5,6,1,22,1,
|
||||||
4,255,2,2,14,3,24,1,16,128,18,1,12,1,2,1,
|
4,255,2,2,14,3,24,1,16,128,18,1,12,1,2,1,
|
||||||
12,1,2,3,12,254,2,1,2,1,2,254,2,253,255,128,
|
12,1,2,3,12,254,2,1,2,1,2,254,2,253,255,128,
|
||||||
114,83,0,0,0,105,107,13,0,0,114,44,0,0,0,114,
|
114,83,0,0,0,105,108,13,0,0,114,44,0,0,0,114,
|
||||||
32,0,0,0,115,2,0,0,0,13,10,90,11,95,95,112,
|
32,0,0,0,115,2,0,0,0,13,10,90,11,95,95,112,
|
||||||
121,99,97,99,104,101,95,95,122,4,111,112,116,45,122,3,
|
121,99,97,99,104,101,95,95,122,4,111,112,116,45,122,3,
|
||||||
46,112,121,122,4,46,112,121,119,122,4,46,112,121,99,41,
|
46,112,121,122,4,46,112,121,119,122,4,46,112,121,99,41,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue