summaryrefslogtreecommitdiff
path: root/Lib/test/test_linecache.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 +0000
commitecaaa548245ae3431815a70162b0d6ef12700551 (patch)
tree24d972cca3d2c0aa62038d7c84cb2d5c628b55be /Lib/test/test_linecache.py
parent77e3dc3f7da072756adfe8a14cb24bb4a3b60822 (diff)
downloadcpython-ecaaa548245ae3431815a70162b0d6ef12700551.tar.gz
Issue #27076: Doc, comment and tests spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skytt?.
Diffstat (limited to 'Lib/test/test_linecache.py')
-rw-r--r--Lib/test/test_linecache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_linecache.py b/Lib/test/test_linecache.py
index 21ef738932..47e2eddfb1 100644
--- a/Lib/test/test_linecache.py
+++ b/Lib/test/test_linecache.py
@@ -139,7 +139,7 @@ class LineCacheTests(unittest.TestCase):
self.assertEqual(
True, linecache.lazycache(NONEXISTENT_FILENAME, globals()))
self.assertEqual(1, len(linecache.cache[NONEXISTENT_FILENAME]))
- # Note here that we're looking up a non existant filename with no
+ # Note here that we're looking up a nonexistent filename with no
# globals: this would error if the lazy value wasn't resolved.
self.assertEqual(lines, linecache.getlines(NONEXISTENT_FILENAME))