This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ebfe
Recipients ebfe, pitrou, vstinner
Date 2009-01-02.10:38:14
SpamBayes Score 0.00013488252
Marked as misclassified No
Message-id <1230892698.23.0.334663129664.issue4738@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a small test-script with concurrent access to a single
compressosbj. The original patch will immediately deadlock.

The patch attached releases the GIL before trying to get the zlib-lock.
This allows the other thread to release the zlib-lock but comes at the
cost of one additional GIL lock/unlock.
History
Date User Action Args
2009-01-02 10:38:18ebfesetrecipients: + ebfe, pitrou, vstinner
2009-01-02 10:38:18ebfesetmessageid: <1230892698.23.0.334663129664.issue4738@psf.upfronthosting.co.za>
2009-01-02 10:38:17ebfelinkissue4738 messages
2009-01-02 10:38:17ebfecreate