diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:02:10 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:02:10 (GMT) |
commit | 5697c4b6419e5a90a59e616e4509a6fff7ebf1a8 (patch) | |
tree | 96efc6116e413e445e9dfdd174138d13b201b886 /Lib/importlib | |
parent | 0db9016a56ba1a7043361b55f5ca0759770d450e (diff) | |
download | cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.zip cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.tar.gz cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.tar.bz2 |
Comment fixes extracted from patch by Demur Rumed.
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 18aec06..6fe3643 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -130,10 +130,6 @@ _code_type = type(_write_atomic.__code__) # a .pyc file in text mode the magic number will be wrong; also, the # Apple MPW compiler swaps their values, botching string constants. # -# The magic numbers must be spaced apart at least 2 values, as the -# -U interpeter flag will cause MAGIC+1 being used. They have been -# odd numbers for some time now. -# # There were a variety of old schemes for setting the magic number. # The current working scheme is to increment the previous value by # 10. |