diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-30 18:14:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-30 18:14:58 -0400 |
commit | 0acb646b8e405864224bfd6d7d5089980dea63ac (patch) | |
tree | 3cff881b9a494392d9a57382f75be584ccde2a59 /Lib/idlelib/idle_test/test_pyparse.py | |
parent | 84846b0187919551b1b08dca447658bbbbb710b1 (diff) | |
download | cpython-0acb646b8e405864224bfd6d7d5089980dea63ac.tar.gz cpython-0acb646b8e405864224bfd6d7d5089980dea63ac.zip |
Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)
Diffstat (limited to 'Lib/idlelib/idle_test/test_pyparse.py')
-rw-r--r-- | Lib/idlelib/idle_test/test_pyparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/idle_test/test_pyparse.py b/Lib/idlelib/idle_test/test_pyparse.py index 479b84a216b..f7154e6ded9 100644 --- a/Lib/idlelib/idle_test/test_pyparse.py +++ b/Lib/idlelib/idle_test/test_pyparse.py @@ -206,8 +206,8 @@ class PyParseTest(unittest.TestCase): 'openbracket', 'bracketing']) tests = ( TestInfo('', 0, 0, '', None, ((0, 0),)), - TestInfo("'''This is a multiline continutation docstring.\n\n", - 0, 49, "'", None, ((0, 0), (0, 1), (49, 0))), + TestInfo("'''This is a multiline continuation docstring.\n\n", + 0, 48, "'", None, ((0, 0), (0, 1), (48, 0))), TestInfo(' # Comment\\\n', 0, 12, '', None, ((0, 0), (1, 1), (12, 0))), # A comment without a space is a special case |