summaryrefslogtreecommitdiffstats
path: root/Doc/library/hashlib.rst
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2013-10-04 02:15:48 (GMT)
committerJesus Cea <jcea@jcea.es>2013-10-04 02:15:48 (GMT)
commit5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204 (patch)
treea97cf79261949ce663c8f8f6d0e125bd415b8b3c /Doc/library/hashlib.rst
parent0b125213de8bffc209a8e557fa3aae877e3663cf (diff)
parentf5c499e16c7c1835b978544ad2d3acd8f04dba4d (diff)
downloadcpython-5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204.zip
cpython-5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204.tar.gz
cpython-5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204.tar.bz2
MERGE: Close #19160: Inconsistent size for GIL release in hashlib
Diffstat (limited to 'Doc/library/hashlib.rst')
-rw-r--r--Doc/library/hashlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index db41db4..7941882 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -41,7 +41,7 @@ concatenation of the data fed to it so far using the :meth:`digest` or
.. note::
For better multithreading performance, the Python :term:`GIL` is released for
- strings of more than 2047 bytes at object creation or on update.
+ data larger than 2048 bytes at object creation or on update.
.. note::