[Python-checkins] peps: mention digestmod

christian.heimes python-checkins at python.org
Mon Aug 19 18:30:20 CEST 2013


http://hg.python.org/peps/rev/0cc8684e72ab
changeset:   5064:0cc8684e72ab
user:        Christian Heimes <christian at cheimes.de>
date:        Mon Aug 19 18:30:13 2013 +0200
summary:
  mention digestmod
fix typo (thx to Francisco Martin Brugue)

files:
  pep-0452.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0452.txt b/pep-0452.txt
--- a/pep-0452.txt
+++ b/pep-0452.txt
@@ -26,7 +26,7 @@
     Hash function modules define one function:
 
     new([string])            (unkeyed hashes)
-    new([key] , [string])    (keyed hashes)
+    new(key, [string], [digestmod])    (keyed hashes)
 
         Create a new hashing object and return it.  The first form is
         for hashes that are unkeyed, such as MD5 or SHA.  For keyed
@@ -201,7 +201,7 @@
     Code may depend on the fact that the argument is called 'string'.
 
 
-Recommanded names for common hashing algorithms
+Recommended names for common hashing algorithms
 
     algorithm       variant         recommended name
     ----------      ---------       ----------------

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list