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 vstinner
Recipients vstinner
Date 2008-08-20.02:33:17
SpamBayes Score 0.009823674
Marked as misclassified No
Message-id <1219199600.1.0.689468244189.issue3611@psf.upfronthosting.co.za>
In-reply-to
Content
After few seconds (30 sec to 5 minutes), my program (Fusil) crashs at:

PyEval_EvalFrameEx (f=0x85b4324, throwflag=0) at Python/ceval.c:2459
    Py_CLEAR(tstate->exc_traceback);

It crashs because tstate->exc_traceback points to a zombi object:
{_ob_next = 0xdbdbdbdb, _ob_prev = 0xdbdbdbdb, ob_refcnt = -606348326, 
ob_type = 0xdbdbdbdb}

(refcnt is 0xdbdbdbdb-1)

I'm using py3k rev 65882 compiled with CFLAGS "-O0 -ggdb" 
and --with-pydebug. Sorry, I don't have more informations yet and I 
can't explain how to reproduce the bug :-/
History
Date User Action Args
2008-08-20 02:33:20vstinnersetrecipients: + vstinner
2008-08-20 02:33:20vstinnersetmessageid: <1219199600.1.0.689468244189.issue3611@psf.upfronthosting.co.za>
2008-08-20 02:33:18vstinnerlinkissue3611 messages
2008-08-20 02:33:18vstinnercreate