summaryrefslogtreecommitdiffstats
path: root/Doc/library/hashlib.rst
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2013-10-04 02:15:06 (GMT)
committerJesus Cea <jcea@jcea.es>2013-10-04 02:15:06 (GMT)
commitf5c499e16c7c1835b978544ad2d3acd8f04dba4d (patch)
tree6c103d1b6918e98e6851145432c74c12bd66374d /Doc/library/hashlib.rst
parent5c4b4c530f19436112518bd5c27b22d592015b3e (diff)
downloadcpython-f5c499e16c7c1835b978544ad2d3acd8f04dba4d.zip
cpython-f5c499e16c7c1835b978544ad2d3acd8f04dba4d.tar.gz
cpython-f5c499e16c7c1835b978544ad2d3acd8f04dba4d.tar.bz2
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 0a1b208..1fc5044 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::