gh-119180: Update the magic number (#119397)

PR #119321 added a comment about the magic number bump
but did not actually apply the new magic number.
This commit is contained in:
Jelle Zijlstra 2024-05-24 17:32:17 -07:00 committed by GitHub
parent 49c3ade4f3
commit 84be5244de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -489,7 +489,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 = (3571).to_bytes(2, 'little') + b'\r\n'
MAGIC_NUMBER = (3600).to_bytes(2, 'little') + b'\r\n'
_RAW_MAGIC_NUMBER = int.from_bytes(MAGIC_NUMBER, 'little') # For import.c