From: Ned Deily Date: Wed, 27 Jun 2018 03:00:18 +0000 (-0400) Subject: Sync the importlib magic number in test_importlib for 3.7.0 X-Git-Tag: v3.7.1rc1~370 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d4dd7db8459d9177f4b7ffc1ac832c9f5fb78b12;p=python Sync the importlib magic number in test_importlib for 3.7.0 --- diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index c285d7b5ac..bcbc99ff36 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -789,7 +789,7 @@ class MagicNumberTests(unittest.TestCase): in advance. Such exceptional releases will then require an adjustment to this test case. """ - EXPECTED_MAGIC_NUMBER = 3379 + EXPECTED_MAGIC_NUMBER = 3394 actual = int.from_bytes(importlib.util.MAGIC_NUMBER[:2], 'little') msg = (