From: Jesus Cea Date: Fri, 4 Oct 2013 02:15:06 +0000 (+0200) Subject: Close #19160: Inconsistent size for GIL release in hashlib X-Git-Tag: v3.4.0a4~278^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5c499e16c7c1835b978544ad2d3acd8f04dba4d;p=thirdparty%2FPython%2Fcpython.git Close #19160: Inconsistent size for GIL release in hashlib --- diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst index 0a1b208d9699..1fc5044099a9 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::