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 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:58sbtsetrecipients: + sbt
2011-12-29 14:58:58sbtsetmessageid: <1325170738.51.0.253695334658.issue13673@psf.upfronthosting.co.za>
2011-12-29 14:58:57sbtlinkissue13673 messages
2011-12-29 14:58:57sbtcreate