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 pitrou
Recipients Jack.McCracken, pitrou
Date 2014-04-19.17:48:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397929689.28.0.897099269338.issue21312@psf.upfronthosting.co.za>
In-reply-to
Content
Hum, your comment about deferring is wrong, since thread_nt.h also does the deferring:

int
PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag)
{
    return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0);
}
History
Date User Action Args
2014-04-19 17:48:09pitrousetrecipients: + pitrou, Jack.McCracken
2014-04-19 17:48:09pitrousetmessageid: <1397929689.28.0.897099269338.issue21312@psf.upfronthosting.co.za>
2014-04-19 17:48:09pitroulinkissue21312 messages
2014-04-19 17:48:09pitroucreate