summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-05-04 00:45:33 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-05-04 00:45:33 (GMT)
commit3f61d61b353c08525348a018294fa05bba1bdfe2 (patch)
tree25258dd4c53962cd25ae584b079839369465df74 /Doc
parentc1651a0b968390ef6b722d3c2e1ca72c5a7c9cec (diff)
downloadcpython-3f61d61b353c08525348a018294fa05bba1bdfe2.zip
cpython-3f61d61b353c08525348a018294fa05bba1bdfe2.tar.gz
cpython-3f61d61b353c08525348a018294fa05bba1bdfe2.tar.bz2
Merge refactoring I did when committing r72267 to trunk into the
already committed issue4751 support in py3k r68411.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/hashlib.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/hashlib.rst b/Doc/library/hashlib.rst
index 955afb8..36f386c 100644
--- a/Doc/library/hashlib.rst
+++ b/Doc/library/hashlib.rst
@@ -105,6 +105,12 @@ A hash object has the following methods:
concatenation of all the arguments: ``m.update(a); m.update(b)`` is
equivalent to ``m.update(a+b)``.
+ .. versionchanged:: 2.7
+
+ The Python GIL is released to allow other threads to run while
+ hash updates on data larger than 2048 bytes is taking place when
+ using hash algorithms supplied by OpenSSL.
+
.. method:: hash.digest()