[Python-checkins] cpython: explanatory comment

brett.cannon python-checkins at python.org
Tue Jun 11 23:34:10 CEST 2013


http://hg.python.org/cpython/rev/d4ee62a57a75
changeset:   84091:d4ee62a57a75
user:        Brett Cannon <brett at python.org>
date:        Tue Jun 11 17:34:04 2013 -0400
summary:
  explanatory comment

files:
  Lib/importlib/_bootstrap.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -384,7 +384,7 @@
 # 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__'
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list