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

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


http://hg.python.org/cpython/rev/310c26df3234
changeset:   85953:310c26df3234
branch:      3.3
parent:      85951:7ed717bd5faa
user:        Jesus Cea <jcea at jcea.es>
date:        Fri Oct 04 04:15:06 2013 +0200
summary:
  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