Re: [Tutor] Getting traceback info from C-API

2010-04-05 Thread Stefan Behnel
Shu, 06.04.2010 01:06: I have a CAPI extension module that is giving me MemoryError exceptions from once in a while with no other information MemoryError is a bit special in that it usually only occurs when memory allocation fails, in which case raising a new exception object would likely al

[Tutor] Getting traceback info from C-API

2010-04-05 Thread Shu
Hi, I have a CAPI extension module that is giving me MemoryError exceptions from once in a while with no other information, so clearly none of my exception handlers are catching it. Is there any way I can traceback information for the extension module? Thanks in advance, .S __