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 vstinner
Recipients ebfe, gps, pitrou, vstinner
Date 2009-01-01.19:02:11
SpamBayes Score 0.18059143
Marked as misclassified No
Message-id <1230836532.64.0.190969738455.issue4751@psf.upfronthosting.co.za>
In-reply-to
Content
Ooooh, I suggested to ebfe to remove the GIL unlock/lock, but I was 
wrong :-( I hate locks! What is the right fix? Replace
   ENTER_HASHLIB(self)
   Py_BEGIN_ALLOW_THREADS
   ...
   Py_END_ALLOW_THREADS
   LEAVE_HASHLIB(self)
by
   Py_BEGIN_ALLOW_THREADS
   ENTER_HASHLIB(self)
   ...
   LEAVE_HASHLIB(self)
   Py_END_ALLOW_THREADS
?
History
Date User Action Args
2009-01-01 19:02:13vstinnersetrecipients: + vstinner, pitrou, gps, ebfe
2009-01-01 19:02:12vstinnersetmessageid: <1230836532.64.0.190969738455.issue4751@psf.upfronthosting.co.za>
2009-01-01 19:02:11vstinnerlinkissue4751 messages
2009-01-01 19:02:11vstinnercreate