summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 07:48:47 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-06 07:48:47 (GMT)
commit74883a3751c5873f8c5b0e7d647722d76ebafe08 (patch)
tree1833898e0ede43692b05073d49dabc6812824ecf /Doc
parenta0ec296599183e7a82ee4c0f096d51ae858b6f98 (diff)
downloadcpython-74883a3751c5873f8c5b0e7d647722d76ebafe08.zip
cpython-74883a3751c5873f8c5b0e7d647722d76ebafe08.tar.gz
cpython-74883a3751c5873f8c5b0e7d647722d76ebafe08.tar.bz2
Fix markup to not add parens to the "hashlib.md5" constructor when the object is meant, not the call.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/hmac.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst
index c2066a7..9575693 100644
--- a/Doc/library/hmac.rst
+++ b/Doc/library/hmac.rst
@@ -19,7 +19,7 @@ This module implements the HMAC algorithm as described by :rfc:`2104`.
Return a new hmac object. *key* is a bytes object giving the secret key. 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.
+ the :data:`hashlib.md5` constructor.
An HMAC object has the following methods: