diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-05-31 06:11:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 06:11:55 (GMT) |
commit | 941ec210aaef517cf818b043ec28345962f78465 (patch) | |
tree | 6691342014f22e7648415327c611cf452513cdeb /Lib/importlib | |
parent | 126869f308d446c1960c542197a1aadacff9ab26 (diff) | |
download | cpython-941ec210aaef517cf818b043ec28345962f78465.zip cpython-941ec210aaef517cf818b043ec28345962f78465.tar.gz cpython-941ec210aaef517cf818b043ec28345962f78465.tar.bz2 |
bpo-32911: Add the historical note about the magic number. (GH-7273)
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index da9a75c..bdd7859 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -246,6 +246,8 @@ _code_type = type(_write_atomic.__code__) # Python 3.7a2 3391 (update GET_AITER #31709) # Python 3.7a4 3392 (PEP 552: Deterministic pycs #31650) # Python 3.7b1 3393 (remove STORE_ANNOTATION opcode #32550) +# Python 3.7b5 3394 (restored docstring as the firts stmt in the body; +# this might affected the first line number #32911) # Python 3.8a1 3400 (move frame block handling to compiler #17611) # Python 3.8a1 3401 (add END_ASYNC_FOR #33041) # |