summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/test_util.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2025-07-08 17:38:37 (GMT)
committerGitHub <noreply@github.com>2025-07-08 17:38:37 (GMT)
commit66f85f4be84964d2ffb9611d05cebb986c2abf2d (patch)
treebcea200e1e9ec76a5958e4ccd96103a2efc7d567 /Lib/test/test_importlib/test_util.py
parentf937b9fffbaaf5e604d5a575758c81d411b33c81 (diff)
downloadcpython-66f85f4be84964d2ffb9611d05cebb986c2abf2d.zip
cpython-66f85f4be84964d2ffb9611d05cebb986c2abf2d.tar.gz
cpython-66f85f4be84964d2ffb9611d05cebb986c2abf2d.tar.bz2
[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>
Diffstat (limited to 'Lib/test/test_importlib/test_util.py')
-rw-r--r--Lib/test/test_importlib/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py
index 5de8971..6d6d5f9 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 = (