diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-14 20:14:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-14 20:14:56 (GMT) |
commit | 5c08bfe8671a9c8830a4301a7ed2f2468174a131 (patch) | |
tree | 1bba69405b509609a941627f6a029ca7bd085e46 /Lib/code.py | |
parent | dfe159ca552870f801e34cc57e9bb7d6836ce7df (diff) | |
download | cpython-5c08bfe8671a9c8830a4301a7ed2f2468174a131.zip cpython-5c08bfe8671a9c8830a4301a7ed2f2468174a131.tar.gz cpython-5c08bfe8671a9c8830a4301a7ed2f2468174a131.tar.bz2 |
Fix documentation in code.py (GH-17988)
(cherry picked from commit b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c)
Co-authored-by: Kyle Pollina <kylepollina@protonmail.com>
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 |