[Python-checkins] cpython (merge 3.3 -> default): MERGE: Close #19160: Inconsistent size for GIL release in hashlib

jesus.cea python-checkins at python.org
Fri Oct 4 04:16:08 CEST 2013


http://hg.python.org/cpython/rev/9503097ce1b7
changeset:   85954:9503097ce1b7
parent:      85952:9354df85afd7
parent:      85953:310c26df3234
user:        Jesus Cea <jcea at jcea.es>
date:        Fri Oct 04 04:15:48 2013 +0200
summary:
  MERGE: Close #19160: Inconsistent size for GIL release in hashlib

files:
  Doc/library/hashlib.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -41,7 +41,7 @@
 .. 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::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list