From: Brett Cannon Date: Tue, 11 Jun 2013 21:34:04 +0000 (-0400) Subject: explanatory comment X-Git-Tag: v3.4.0a1~531 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12d400db6538106d07d271e3cd29e42c244e71f6;p=thirdparty%2FPython%2Fcpython.git explanatory comment --- diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index fc1ce7ff2e01..e477b5536a03 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -384,7 +384,7 @@ def _call_with_frames_removed(f, *args, **kwds): # due to the addition of new opcodes). _MAGIC_BYTES = (3280).to_bytes(2, 'little') + b'\r\n' -_RAW_MAGIC_NUMBER = int.from_bytes(_MAGIC_BYTES, 'little') +_RAW_MAGIC_NUMBER = int.from_bytes(_MAGIC_BYTES, 'little') # For import.c _PYCACHE = '__pycache__'