Issue #28145: Spelling fixes

This commit is contained in:
Martin Panter 2016-09-16 00:46:05 +00:00
parent 525aedc5fa
commit 2dc77f0e19
3 changed files with 3 additions and 3 deletions

View file

@ -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):