diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-16 00:46:05 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-16 00:46:05 (GMT) |
commit | 2dc77f0e197b9ca9710d7ae20ff13fe2bea541c4 (patch) | |
tree | 36a6b8fefc0c6024fd9a6d9c75de964f57a6ae39 /Lib | |
parent | 525aedc5fae90e5195adb2d34ec33f1a773540fc (diff) | |
download | cpython-2dc77f0e197b9ca9710d7ae20ff13fe2bea541c4.zip cpython-2dc77f0e197b9ca9710d7ae20ff13fe2bea541c4.tar.gz cpython-2dc77f0e197b9ca9710d7ae20ff13fe2bea541c4.tar.bz2 |
Issue #28145: Spelling fixes
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_defaultdict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_defaultdict.py b/Lib/test/test_defaultdict.py index a90bc2b..7218349 100644 --- a/Lib/test/test_defaultdict.py +++ b/Lib/test/test_defaultdict.py @@ -175,7 +175,7 @@ class TestDefaultDict(unittest.TestCase): def test_callable_arg(self): self.assertRaises(TypeError, defaultdict, {}) - def test_pickleing(self): + def test_pickling(self): d = defaultdict(int) d[1] for proto in range(pickle.HIGHEST_PROTOCOL + 1): |