From: Daniel Hahler Date: Thu, 9 Jan 2020 17:07:32 +0000 (+0100) Subject: Fix typo in test's docstring (GH-17856) X-Git-Tag: v3.9.0a3~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f65aa465865930f8364645b1466d2751c4086d3;p=thirdparty%2FPython%2Fcpython.git Fix typo in test's docstring (GH-17856) * Fix typo in test's docstring. contination -> continuation. --- diff --git a/Lib/test/test_eof.py b/Lib/test/test_eof.py index a091ceaa25bc..9ef8eb118748 100644 --- a/Lib/test/test_eof.py +++ b/Lib/test/test_eof.py @@ -27,7 +27,7 @@ class EOFTestCase(unittest.TestCase): raise support.TestFailed def test_line_continuation_EOF(self): - """A contination at the end of input must be an error; bpo2180.""" + """A continuation at the end of input must be an error; bpo2180.""" expect = 'unexpected EOF while parsing (, line 1)' with self.assertRaises(SyntaxError) as excinfo: exec('x = 5\\')