diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-05-26 22:45:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-05-26 22:45:14 (GMT) |
commit | f9ea5f39d8eb3ab2082d0bd46778c34e51742e56 (patch) | |
tree | 873943f7711feeaa65cbec6fda05a1906c6b3863 /Doc | |
parent | 0d81d80f6e4c61f008e5e379da0fbcbd41b3a3c5 (diff) | |
download | cpython-f9ea5f39d8eb3ab2082d0bd46778c34e51742e56.zip cpython-f9ea5f39d8eb3ab2082d0bd46778c34e51742e56.tar.gz cpython-f9ea5f39d8eb3ab2082d0bd46778c34e51742e56.tar.bz2 |
format reST directive in the usual way
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/hashlib.rst | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index cc982f6..39024af 100644 --- a/Doc/library/hashlib.rst +++ b/Doc/library/hashlib.rst @@ -210,9 +210,11 @@ include a `salt <https://en.wikipedia.org/wiki/Salt_%28cryptography%29>`_. .. versionadded:: 3.4 - .. note:: A fast implementation of *pbkdf2_hmac* is available with OpenSSL. - The Python implementation uses an inline version of :mod:`hmac`. It is - about three times slower and doesn't release the GIL. + .. note:: + + A fast implementation of *pbkdf2_hmac* is available with OpenSSL. The + Python implementation uses an inline version of :mod:`hmac`. It is about + three times slower and doesn't release the GIL. .. seealso:: |