From 12d400db6538106d07d271e3cd29e42c244e71f6 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 11 Jun 2013 17:34:04 -0400 Subject: [PATCH] explanatory comment --- Lib/importlib/_bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index fc1ce7ff2e0..e477b5536a0 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__'