diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-16 00:56:15 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-16 00:56:15 (GMT) |
commit | 3aba2223c846753e3817120a4b2ef09f8d4705c6 (patch) | |
tree | f60adee48f76a7792dd7344c2326820a2ddf7988 /Lib | |
parent | 2e5b56e10114bea98ccd826983d32988aaf316e2 (diff) | |
parent | 355bbb0a2ae864acd6c719b3529c6f5cabfdd950 (diff) | |
download | cpython-3aba2223c846753e3817120a4b2ef09f8d4705c6.zip cpython-3aba2223c846753e3817120a4b2ef09f8d4705c6.tar.gz cpython-3aba2223c846753e3817120a4b2ef09f8d4705c6.tar.bz2 |
Issue #28145: Merge spelling fixes from 3.6
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): |