]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Update the expected bytecode magic number in test_importlib.test_util (#122513)
authorT. Wouters <thomas@python.org>
Wed, 31 Jul 2024 18:03:22 +0000 (20:03 +0200)
committerGitHub <noreply@github.com>
Wed, 31 Jul 2024 18:03:22 +0000 (20:03 +0200)
Update the expected bytecode magic number in test_importlib.test_util.

Lib/test/test_importlib/test_util.py

index 668042782bdc5f9f39f03058853c31873fba5462..d001b72d81f6b8fdf95c709da62ad9f4d173db13 100644 (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 = (