diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 07:49:18 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 07:49:18 (GMT) |
commit | 808ddaa3ecc383fca740c6ec2b640c91678d7a59 (patch) | |
tree | 2a7b0a0601651078bff4e5d7b089bd6ec409c694 /Doc/library | |
parent | 7cf231f695194e81c0431bd96940ab2f37e061ad (diff) | |
parent | 74883a3751c5873f8c5b0e7d647722d76ebafe08 (diff) | |
download | cpython-808ddaa3ecc383fca740c6ec2b640c91678d7a59.zip cpython-808ddaa3ecc383fca740c6ec2b640c91678d7a59.tar.gz cpython-808ddaa3ecc383fca740c6ec2b640c91678d7a59.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/hmac.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hmac.rst b/Doc/library/hmac.rst index 4c707e9..1d928ea 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 or bytearray 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. + It defaults to the :data:`hashlib.md5` constructor. .. versionchanged:: 3.4 Parameter *key* can be a bytes or bytearray object. Parameter *msg* can |