diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-08 21:17:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-08 21:17:16 (GMT) |
commit | bcd5cbe01ef4306a82f85d0500f9a9f04113f804 (patch) | |
tree | a9753988bcb56f924a12dac12dc09ad5e54b3119 /Misc | |
parent | 5bad41eefc9f80298bb1abe00a5475be8b015c57 (diff) | |
download | cpython-bcd5cbe01ef4306a82f85d0500f9a9f04113f804.zip cpython-bcd5cbe01ef4306a82f85d0500f9a9f04113f804.tar.gz cpython-bcd5cbe01ef4306a82f85d0500f9a9f04113f804.tar.bz2 |
Issue #4751: hashlib now releases the GIL when hashing large buffers
(with a hardwired threshold of 2048 bytes), allowing better parallelization
on multi-CPU systems. Contributed by Lukas Lueg (ebfe) and Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -256,6 +256,10 @@ C-API Extension Modules ----------------- +- Issue #4751: hashlib now releases the GIL when hashing large buffers + (with a hardwired threshold of 2048 bytes), allowing better parallelization + on multi-CPU systems. Contributed by Lukas Lueg (ebfe) and Victor Stinner. + - Issue #4051: Prevent conflict of UNICODE macros in cPickle. - Issue #4738: Each zlib object now has a separate lock, allowing to compress |