From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Tue, 8 Jul 2025 17:11:48 +0000 (+0300) Subject: Update bytecode magic number in tests for the 3.14 release candidate (#136427) X-Git-Tag: v3.15.0a1~1051 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc9bc078df302dd5cc9928c42c37f4f6d414c767;p=thirdparty%2FPython%2Fcpython.git Update bytecode magic number in tests for the 3.14 release candidate (#136427) --- diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index 5de89714eb50..6d6d5f96aab4 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -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 = (