Message255739
| Author | yselivanov |
|---|---|
| Recipients | georg.brandl, gvanrossum, larry, ncoghlan, vstinner, yselivanov |
| Date | 2015-12-02.17:46:21 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1449078381.94.0.976071005938.issue25782@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
The bug is in "PyErr_SetObject":
while ((context = PyException_GetContext(o))) {
Py_DECREF(context);
if (context == value) {
PyException_SetContext(o, NULL);
break;
}
o = context;
}
The loop can be infinite. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2015-12-02 17:46:21 | yselivanov | set | recipients: + yselivanov, gvanrossum, georg.brandl, ncoghlan, vstinner, larry |
| 2015-12-02 17:46:21 | yselivanov | set | messageid: <1449078381.94.0.976071005938.issue25782@psf.upfronthosting.co.za> |
| 2015-12-02 17:46:21 | yselivanov | link | issue25782 messages |
| 2015-12-02 17:46:21 | yselivanov | create | |