Fix idlelib typos discovered by min ho, pr 15018. (GH-15029)

This commit is contained in:
Terry Jan Reedy 2019-07-30 18:14:58 -04:00 committed by GitHub
parent 84846b0187
commit 0acb646b8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 9 deletions

View file

@ -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