Fix typo in test's docstring (GH-17856)

* Fix typo in test's docstring. contination -> continuation.
This commit is contained in:
Daniel Hahler 2020-01-09 18:07:32 +01:00 committed by Karthikeyan Singaravelan
parent ed367815ee
commit 2f65aa4658

View file

@ -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 (<string>, line 1)'
with self.assertRaises(SyntaxError) as excinfo:
exec('x = 5\\')