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 benjamin.peterson
Recipients benjamin.peterson, kristjan.jonsson, loewis, paul.moore, pitrou, python-dev, sbt, vstinner
Date 2012-07-19.18:36:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1342722990.56.0.959289354877.issue15038@psf.upfronthosting.co.za>
In-reply-to
Content
I see dead code here:

Py_LOCAL_INLINE(int)
PyCOND_BROADCAST(PyCOND_T *cv)
{
    if (cv->waiting > 0) {
        return ReleaseSemaphore(cv->sem, cv->waiting, NULL) ? 0 : -1;
		cv->waiting = 0;
    }
    return 0;
}
History
Date User Action Args
2012-07-19 18:36:30benjamin.petersonsetrecipients: + benjamin.peterson, loewis, paul.moore, pitrou, kristjan.jonsson, vstinner, python-dev, sbt
2012-07-19 18:36:30benjamin.petersonsetmessageid: <1342722990.56.0.959289354877.issue15038@psf.upfronthosting.co.za>
2012-07-19 18:36:29benjamin.petersonlinkissue15038 messages
2012-07-19 18:36:29benjamin.petersoncreate