summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-01-09 17:33:05 (GMT)
committerKarthikeyan Singaravelan <tir.karthi@gmail.com>2020-01-09 17:33:05 (GMT)
commite47a7e3a7ab2cfb321e5f276028be286f30bd057 (patch)
tree078a6271feb2a0980ca64bb50d2c9a67e626f857
parent8c08518c255747a06d00479f21087f0c934d0ad6 (diff)
downloadcpython-e47a7e3a7ab2cfb321e5f276028be286f30bd057.zip
cpython-e47a7e3a7ab2cfb321e5f276028be286f30bd057.tar.gz
cpython-e47a7e3a7ab2cfb321e5f276028be286f30bd057.tar.bz2
Fix typo in test's docstring (GH-17856) (GH-17923)
* Fix typo in test's docstring. contination -> continuation. (cherry picked from commit 2f65aa465865930f8364645b1466d2751c4086d3) Co-authored-by: Daniel Hahler <git@thequod.de> Co-authored-by: Daniel Hahler <github@thequod.de>
-rw-r--r--Lib/test/test_eof.py2
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\\')