From: T. Wouters Date: Wed, 31 Jul 2024 18:03:22 +0000 (+0200) Subject: [3.13] Update the expected bytecode magic number in test_importlib.test_util (#122513) X-Git-Tag: v3.13.0rc1~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c1c9188df1dd4f866ed04c5202f94f33e6cc68c;p=thirdparty%2FPython%2Fcpython.git [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. --- diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index 668042782bdc..d001b72d81f6 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -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 = (