diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 14:04:38 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 14:04:38 (GMT) |
commit | 4f9946874ba591326d57d60bbeef9e4f51432ac7 (patch) | |
tree | 8bd72a1c6c26cea19a562960180c0d22bb288375 /Doc | |
parent | 9df73dac846fca8140ff663aaf76cd88e1df4a23 (diff) | |
download | cpython-4f9946874ba591326d57d60bbeef9e4f51432ac7.zip cpython-4f9946874ba591326d57d60bbeef9e4f51432ac7.tar.gz cpython-4f9946874ba591326d57d60bbeef9e4f51432ac7.tar.bz2 |
The buffer protocol doesn't exist (in the glossary anyway).
Diffstat (limited to 'Doc')
-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 2ea3fc6..a8ca3af 100644 --- a/Doc/library/hmac.rst +++ b/Doc/library/hmac.rst @@ -74,7 +74,7 @@ This module also provides the following helper function: timing analysis, making it appropriate for cryptography. *a* and *b* must both be of the same type: either :class:`str` (ASCII only, as e.g. returned by :meth:`HMAC.hexdigest`), or any type that supports the - :term:`buffer protocol` (e.g. :class:`bytes`). + buffer protocol (e.g. :class:`bytes`). .. note:: If *a* and *b* are different lengths, or if an error occurs, |