summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-16 00:55:27 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-16 00:55:27 (GMT)
commit355bbb0a2ae864acd6c719b3529c6f5cabfdd950 (patch)
tree119bcaa76ccafcb2193765d043ae8479dd7b4462 /Lib
parent993b6f5c7ba072ca58398500570da6e16489f277 (diff)
parent2dc77f0e197b9ca9710d7ae20ff13fe2bea541c4 (diff)
downloadcpython-355bbb0a2ae864acd6c719b3529c6f5cabfdd950.zip
cpython-355bbb0a2ae864acd6c719b3529c6f5cabfdd950.tar.gz
cpython-355bbb0a2ae864acd6c719b3529c6f5cabfdd950.tar.bz2
Issue #28145: Merge spelling fixes from 3.5 into 3.6
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_defaultdict.py2
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):