[Python-Dev] Tracebacks into C code (original) (raw)
Edward C. Jones edcjones at erols.com
Sun Jan 11 12:10:40 EST 2004
- Previous message: [Python-Dev] Weekly Python Bug/Patch Summary
- Next message: [Python-Dev] Tracebacks into C code
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Suppose: I have a Python extension written in C. "My_Func" is a function in the extension which is visible at the Python level. "My_Func" calls the C function "C_func1". "C_func1" calls the C function "C_func2". "C_func2" raises an exception by calling something like "PyErr_SetString". How do I make the Python traceback include "C_func1" and "C_func2"?
- Previous message: [Python-Dev] Weekly Python Bug/Patch Summary
- Next message: [Python-Dev] Tracebacks into C code
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]