From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 8 Jul 2025 17:38:37 +0000 (+0200) Subject: [3.14] Update bytecode magic number in tests for the 3.14 release candidate (GH-13642... X-Git-Tag: v3.14.0rc1~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=66f85f4be84964d2ffb9611d05cebb986c2abf2d;p=thirdparty%2FPython%2Fcpython.git [3.14] Update bytecode magic number in tests for the 3.14 release candidate (GH-136427) (#136429) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- 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 = (