From 72cd6ad47a05240b508f361d03b09ba1e0b58520 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 19 Aug 2013 18:30:13 +0200 Subject: [PATCH] mention digestmod fix typo (thx to Francisco Martin Brugue) --- pep-0452.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pep-0452.txt b/pep-0452.txt index a0cef8eeb..18481fb88 100644 --- a/pep-0452.txt +++ b/pep-0452.txt @@ -26,7 +26,7 @@ Specification 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 @@ Changes from Version 1.0 to Version 2.0 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 ---------- --------- ----------------