]> granicus.if.org Git - python/commitdiff
explanatory comment
authorBrett Cannon <brett@python.org>
Tue, 11 Jun 2013 21:34:04 +0000 (17:34 -0400)
committerBrett Cannon <brett@python.org>
Tue, 11 Jun 2013 21:34:04 +0000 (17:34 -0400)
Lib/importlib/_bootstrap.py

index fc1ce7ff2e019c2455f79eaf32ec649e6e40d858..e477b5536a0319a5cfa8cc8f18141a0d484b9c8f 100644 (file)
@@ -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__'