Staging
v0.5.1
https://github.com/python/cpython
Revision 1fb83c155f7ce0a64a6a27b189144a8b7fc0c3eb authored by Jack Jansen on 23 July 2003, 10:51:55 UTC, committed by Jack Jansen on 23 July 2003, 10:51:55 UTC
problems than it solves. In stead, put a warning near the top of the
welcome message. Fixes (or, rather works around) bug #764975.
1 parent dffeaf4
Raw File
Tip revision: 1fb83c155f7ce0a64a6a27b189144a8b7fc0c3eb authored by Jack Jansen on 23 July 2003, 10:51:55 UTC
Don't force boot-disk-only install, for reasons unknown it causes more
Tip revision: 1fb83c1
traceback.h

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

/* Traceback interface */

struct _frame;

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