[3.13] Update the expected bytecode magic number in test_importlib.test_util (#122513)

Update the expected bytecode magic number in test_importlib.test_util.
This commit is contained in:
T. Wouters 2024-07-31 20:03:22 +02:00 committed by GitHub
parent 8c8c43e1dc
commit 9c1c9188df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -634,7 +634,7 @@ class MagicNumberTests(unittest.TestCase):
# stakeholders such as OS package maintainers must be notified
# in advance. Such exceptional releases will then require an
# adjustment to this test case.
EXPECTED_MAGIC_NUMBER = 3495
EXPECTED_MAGIC_NUMBER = 3571
actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little')
msg = (