Staging
v0.8.1
https://github.com/python/cpython
Revision 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC, committed by Fred Drake on 13 November 2004, 17:45:39 UTC
so that this is harder to forget to do for development of new styles
1 parent bbc0d44
Raw File
Tip revision: 1681b622515e2c174d59e79746579e71339adc04 authored by Fred Drake on 13 November 2004, 17:45:39 UTC
add another way to specify an alternate name for the documentation set,
Tip revision: 1681b62
traceback.h

#ifndef Py_TRACEBACK_H
#define Py_TRACEBACK_H
#ifdef __cplusplus
extern "C" {
#endif

struct _frame;

/* Traceback interface */

typedef struct _traceback {
	PyObject_HEAD
	struct _traceback *tb_next;
	struct _frame *tb_frame;
	int tb_lasti;
	int tb_lineno;
} PyTracebackObject;

PyAPI_FUNC(int) PyTraceBack_Here(struct _frame *);
PyAPI_FUNC(int) PyTraceBack_Print(PyObject *, PyObject *);

/* Reveal traceback type so we can typecheck traceback objects */
PyAPI_DATA(PyTypeObject) PyTraceBack_Type;
#define PyTraceBack_Check(v) ((v)->ob_type == &PyTraceBack_Type)

#ifdef __cplusplus
}
#endif
#endif /* !Py_TRACEBACK_H */
back to top