summaryrefslogtreecommitdiff
path: root/Lib/test/test_dict.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-30 05:24:49 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-30 05:24:49 +0000
commite514093a2ff13c2479dae7967fa21fef21e62267 (patch)
treea754e5e0497e0320d8eef63bf0756599cdae5b3a /Lib/test/test_dict.py
parent137bac265e5e22a44680799859666cc18bb4af3c (diff)
parenta90a4a96517fe25b57246083076b247f417d737d (diff)
downloadcpython-git-e514093a2ff13c2479dae7967fa21fef21e62267.tar.gz
Issue #27125: Merge typo fixes from 3.5
Diffstat (limited to 'Lib/test/test_dict.py')
-rw-r--r--Lib/test/test_dict.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py
index 7dd44b9515..6c4706636e 100644
--- a/Lib/test/test_dict.py
+++ b/Lib/test/test_dict.py
@@ -863,7 +863,7 @@ class DictTest(unittest.TestCase):
itorg = iter(data.items())
d = pickle.dumps(itorg, proto)
it = pickle.loads(d)
- # note that the type of type of the unpickled iterator
+ # note that the type of the unpickled iterator
# is not necessarily the same as the original. It is
# merely an object supporting the iterator protocol, yielding
# the same objects as the original one.