mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Merge refactoring I did when committing r72267 to trunk into the
already committed issue4751 support in py3k r68411.
This commit is contained in:
parent
c1651a0b96
commit
3f61d61b35
3 changed files with 78 additions and 34 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue