diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2017-08-03 09:00:59 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-08-03 09:00:59 +0300 |
commit | 49b2734bf12dc1cda80fd73d3ec8896ae3e362f2 (patch) | |
tree | 049e496126aae48bf6d7c3ddbb7f145e04e53e97 /Lib/test/test_functools.py | |
parent | d9d55c91bec4776b41685b48fe660621e89f0617 (diff) | |
download | cpython-git-49b2734bf12dc1cda80fd73d3ec8896ae3e362f2.tar.gz |
Spelling fixes (#2902)
Diffstat (limited to 'Lib/test/test_functools.py')
-rw-r--r-- | Lib/test/test_functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 8eede7a684..3acfb92be4 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -1253,7 +1253,7 @@ class TestLRU: self.assertEqual(mock_int.__hash__.call_count, 2) self.assertEqual(f.cache_info(), (1, 1, 1, 1)) - # Cache eviction: No use as an argument gives no additonal call + # Cache eviction: No use as an argument gives no additional call self.assertEqual(f(6, 2), 20) self.assertEqual(mock_int.__hash__.call_count, 2) self.assertEqual(f.cache_info(), (1, 2, 1, 1)) |