diff options
author | Brett Cannon <brett@python.org> | 2013-06-11 21:34:04 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-11 21:34:04 (GMT) |
commit | 12d400db6538106d07d271e3cd29e42c244e71f6 (patch) | |
tree | 332c5af591071ad9fbc0a7d4886361280e432bd5 | |
parent | 865b2925dd5bcd6847505f6ed05fb886346de136 (diff) | |
download | cpython-12d400db6538106d07d271e3cd29e42c244e71f6.zip cpython-12d400db6538106d07d271e3cd29e42c244e71f6.tar.gz cpython-12d400db6538106d07d271e3cd29e42c244e71f6.tar.bz2 |
explanatory comment
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index fc1ce7f..e477b55 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__' |