diff options
author | Kyle Stanley <aeros167@gmail.com> | 2019-07-22 18:14:07 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-22 18:14:07 (GMT) |
commit | 83cec020ba177fa27727330ba4ccf60eebc22a54 (patch) | |
tree | 926a6a42d1464f8040bbf044b49918cdef1277c0 /Lib/importlib/_bootstrap_external.py | |
parent | 5d3d0f382f6663fcb8b426a62ef3a4cbd9a938d6 (diff) | |
download | cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.zip cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.tar.gz cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.tar.bz2 |
[3.7] Fix typos in docs, comments and test assert messages (GH-14872). (#14901)
(cherry picked from commit 96e12d5f4f3c5a20986566038ee763dff3c228a1)
Co-authored-by: Min ho Kim <minho42@gmail.com>
Diffstat (limited to 'Lib/importlib/_bootstrap_external.py')
-rw-r--r-- | Lib/importlib/_bootstrap_external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap_external.py b/Lib/importlib/_bootstrap_external.py index 53b24ff..66a16a6 100644 --- a/Lib/importlib/_bootstrap_external.py +++ b/Lib/importlib/_bootstrap_external.py @@ -246,7 +246,7 @@ _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; +# Python 3.7b5 3394 (restored docstring as the first stmt in the body; # this might affected the first line number #32911) # # MAGIC must change whenever the bytecode emitted by the compiler may no |