]> granicus.if.org Git - python/commitdiff
Fix markup to not add parens to the "hashlib.md5" constructor when the object is...
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 07:48:26 +0000 (09:48 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 07:48:26 +0000 (09:48 +0200)
Doc/library/hmac.rst

index e962ff0de7183355a9ddef9cffd102da1f003067..f88a03e0f9773725cd4430ea2db21a2a5494a6bf 100644 (file)
@@ -20,7 +20,7 @@ This module implements the HMAC algorithm as described by :rfc:`2104`.
 
    Return a new hmac object.  If *msg* is present, the method call ``update(msg)``
    is made. *digestmod* is the digest constructor or module for the HMAC object to
-   use. It defaults to  the :func:`hashlib.md5` constructor.
+   use. It defaults to  the :data:`hashlib.md5` constructor.
 
 
 An HMAC object has the following methods: