summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2013-10-04 04:15:48 +0200
committerJesus Cea <jcea@jcea.es>2013-10-04 04:15:48 +0200
commit5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204 (patch)
treea97cf79261949ce663c8f8f6d0e125bd415b8b3c
parent0b125213de8bffc209a8e557fa3aae877e3663cf (diff)
parentf5c499e16c7c1835b978544ad2d3acd8f04dba4d (diff)
downloadcpython-git-5f0f51239b132f7dd09b5d54aeb11a9d4b3a2204.tar.gz
MERGE: Close #19160: Inconsistent size for GIL release in hashlib
-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 db41db4ba5..79418826a2 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::