diff options
author | Daniel Hahler <git@thequod.de> | 2020-01-09 17:07:32 (GMT) |
---|---|---|
committer | Karthikeyan Singaravelan <tir.karthi@gmail.com> | 2020-01-09 17:07:32 (GMT) |
commit | 2f65aa465865930f8364645b1466d2751c4086d3 (patch) | |
tree | 795f56d683f1abaf7ea8e04190b11f4d747dcef0 /Lib/test/test_eof.py | |
parent | ed367815eeb9329c48a86a8a7fa3186e27a10f2c (diff) | |
download | cpython-2f65aa465865930f8364645b1466d2751c4086d3.zip cpython-2f65aa465865930f8364645b1466d2751c4086d3.tar.gz cpython-2f65aa465865930f8364645b1466d2751c4086d3.tar.bz2 |
Fix typo in test's docstring (GH-17856)
* Fix typo in test's docstring. contination -> continuation.
Diffstat (limited to 'Lib/test/test_eof.py')
-rw-r--r-- | Lib/test/test_eof.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_eof.py b/Lib/test/test_eof.py index a091cea..9ef8eb1 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 (<string>, line 1)' with self.assertRaises(SyntaxError) as excinfo: exec('x = 5\\') |