summaryrefslogtreecommitdiffstats
path: root/Lib/hashlib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-12-01 16:16:30 (GMT)
commit0f8f784a77a51dc3ceac8c812177bff33bced830 (patch)
tree55227dc28b9e1fc5c85650a5604d28c52e32e70f /Lib/hashlib.py
parentd862db0d091a3bb95c185d7365384b8bd22f59be (diff)
downloadcpython-0f8f784a77a51dc3ceac8c812177bff33bced830.zip
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.gz
cpython-0f8f784a77a51dc3ceac8c812177bff33bced830.tar.bz2
Removed duplicated words in in comments and docs.
Diffstat (limited to 'Lib/hashlib.py')
-rw-r--r--Lib/hashlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/hashlib.py b/Lib/hashlib.py
index 4a411bc..bbd06b9 100644
--- a/Lib/hashlib.py
+++ b/Lib/hashlib.py
@@ -187,7 +187,7 @@ except ImportError:
def prf(msg, inner=inner, outer=outer):
# PBKDF2_HMAC uses the password as key. We can re-use the same
- # digest objects and and just update copies to skip initialization.
+ # digest objects and just update copies to skip initialization.
icpy = inner.copy()
ocpy = outer.copy()
icpy.update(msg)