mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
This commit is contained in:
parent
407c3afe19
commit
37c6db60f9
9 changed files with 145 additions and 88 deletions
|
@ -416,7 +416,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 = (3493).to_bytes(2, 'little') + b'\r\n'
|
||||
MAGIC_NUMBER = (3494).to_bytes(2, 'little') + b'\r\n'
|
||||
|
||||
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue