]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Update bytecode magic number in tests for the 3.14 release candidate (#136427)
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Tue, 8 Jul 2025 17:11:48 +0000 (20:11 +0300)
committerGitHub <noreply@github.com>
Tue, 8 Jul 2025 17:11:48 +0000 (20:11 +0300)
Lib/test/test_importlib/test_util.py

index 5de89714eb50c728f10a7b42c4a26f08c0bb623e..6d6d5f96aab4a84e0d25e923d3e03391f0c4409b 100644 (file)
@@ -635,7 +635,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 = 3625
         actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little')
 
         msg = (