diff options
author | Kyle Pollina <kylepollina@protonmail.com> | 2020-01-14 19:47:26 (GMT) |
---|---|---|
committer | Karthikeyan Singaravelan <tir.karthi@gmail.com> | 2020-01-14 19:47:25 (GMT) |
commit | b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c (patch) | |
tree | f2709d7176cb061425d174b1e26a7f1cc1a083ef /Lib/code.py | |
parent | f04750bb7af45cb6efab8d92d1ff063f0bf2833d (diff) | |
download | cpython-b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c.zip cpython-b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c.tar.gz cpython-b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c.tar.bz2 |
Fix documentation in code.py (GH-17988)
Diffstat (limited to 'Lib/code.py')
-rw-r--r-- | Lib/code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/code.py b/Lib/code.py index d8106ae..76000f8 100644 --- a/Lib/code.py +++ b/Lib/code.py @@ -40,7 +40,7 @@ class InteractiveInterpreter: Arguments are as for compile_command(). - One several things can happen: + One of several things can happen: 1) The input is incorrect; compile_command() raised an exception (SyntaxError or OverflowError). A syntax traceback |