Fix markup to not add parens to the "hashlib.md5" constructor when the object is meant, not the call.

This commit is contained in:
Georg Brandl 2013-10-06 09:48:26 +02:00
parent d39c3a4d45
commit 05c8baa40f
1 changed files with 1 additions and 1 deletions

View 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: