Author gvanrossum
Recipients gvanrossum, piro
Date 2007-10-30.00:53:11
SpamBayes Score 0.0490002
Marked as misclassified No
Message-id <1193705591.8.0.209959692839.issue1360@psf.upfronthosting.co.za>
In-reply-to
Content
This (and the other issue you mention) is because the regular acquire()
method on a basic lock cannot be interrupted.  That's unlikely to go
away, so you'll just have to live with this.  As you've discovered,
specifying a timeout solves the issue.  Since code running in threads
doesn't receive signals anyway (in Python), it would be fairly pointless
to slow down lock acquisition in order to support keyboard interrupts.
History
Date User Action Args
2007-10-30 00:53:11gvanrossumsetspambayes_score: 0.0490002 -> 0.0490002
recipients: + gvanrossum, piro
2007-10-30 00:53:11gvanrossumsetspambayes_score: 0.0490002 -> 0.0490002
messageid: <1193705591.8.0.209959692839.issue1360@psf.upfronthosting.co.za>
2007-10-30 00:53:11gvanrossumlinkissue1360 messages
2007-10-30 00:53:11gvanrossumcreate