Message150331
| Author |
sbt |
| Recipients |
sbt |
| Date |
2011年12月29日.14:58:57 |
| SpamBayes Score |
0.004262156 |
| Marked as misclassified |
No |
| Message-id |
<1325170738.51.0.253695334658.issue13673@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I think I have found the problem. PyTraceBack_Print() calls PyFile_WriteString(), which calls PyFile_WriteObject(), which calls PyObject_Str() which begins with
PyObject_Str(PyObject *v)
{
PyObject *res;
if (PyErr_CheckSignals())
return NULL;
...
Since PyErr_CheckSignals() returns -1, PyTraceBack_Print() fails.
(Changed title.) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年12月29日 14:58:58 | sbt | set | recipients:
+ sbt |
| 2011年12月29日 14:58:58 | sbt | set | messageid: <1325170738.51.0.253695334658.issue13673@psf.upfronthosting.co.za> |
| 2011年12月29日 14:58:57 | sbt | link | issue13673 messages |
| 2011年12月29日 14:58:57 | sbt | create |
|