From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 5 Aug 2022 14:43:10 +0000 (-0700) Subject: [3.11] Update the magic number in test_util.py (GH-95714) (#95716) X-Git-Tag: v3.11.0rc1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6cf9e4a3efaf34b2071b7e8b10c0fef3c0ba823;p=thirdparty%2FPython%2Fcpython.git [3.11] Update the magic number in test_util.py (GH-95714) (#95716) Co-authored-by: Pablo Galindo Salgado --- diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index c77c7814a9cc..a62d68fcd8b3 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -860,7 +860,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 = 3413 + EXPECTED_MAGIC_NUMBER = 3495 actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little') msg = (