diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:16:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-12-01 16:16:30 (GMT) |
commit | 0f8f784a77a51dc3ceac8c812177bff33bced830 (patch) | |
tree | 55227dc28b9e1fc5c85650a5604d28c52e32e70f /Lib/hashlib.py | |
parent | d862db0d091a3bb95c185d7365384b8bd22f59be (diff) | |
download | cpython-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.py | 2 |
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) |