diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-02 17:34:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-01-02 17:34:35 (GMT) |
commit | 31f30b17fe95acf3d7ba81ef93927206db79eb08 (patch) | |
tree | fc4034940f56f051b56b22b99a12db3eecbf9682 /Misc | |
parent | e9f8bf023a2293e4948b492b6aea34007c2c0197 (diff) | |
download | cpython-31f30b17fe95acf3d7ba81ef93927206db79eb08.zip cpython-31f30b17fe95acf3d7ba81ef93927206db79eb08.tar.gz cpython-31f30b17fe95acf3d7ba81ef93927206db79eb08.tar.bz2 |
Issue #4738: finer-grained locking in the zlib module.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -175,6 +175,10 @@ Tools/Demos Extension Modules ----------------- +- Issue #4738: Each zlib object now has a separate lock, allowing to compress + or decompress several streams at once on multi-CPU systems. Also, the GIL + is now released when computing the CRC of a large buffer. Patch by ebfe. + - Issue #1040026: Fix os.times result on systems where HZ is incorrect. - Issues #3167, #3682: Fix test_math failures for log, log10 on Solaris, |