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:30 | benjamin.peterson | set | recipients: + benjamin.peterson, loewis, paul.moore, pitrou, kristjan.jonsson, vstinner, python-dev, sbt |
| 2012年07月19日 18:36:30 | benjamin.peterson | set | messageid: <1342722990.56.0.959289354877.issue15038@psf.upfronthosting.co.za> |
| 2012年07月19日 18:36:29 | benjamin.peterson | link | issue15038 messages |
| 2012年07月19日 18:36:29 | benjamin.peterson | create | |