Sync the importlib magic number in test_importlib for 3.7.0

This commit is contained in:
Ned Deily 2018-06-26 23:00:18 -04:00
parent 828351716e
commit a61f6e72d0
1 changed files with 1 additions and 1 deletions

View File

@ -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 = (