Staging
v0.5.1
https://github.com/python/cpython
Revision f3dca6acee609a3a12f22152fd98602c1cbadde0 authored by Miss Islington (bot) on 29 August 2019, 06:12:13 UTC, committed by Raymond Hettinger on 29 August 2019, 06:12:13 UTC
(cherry picked from commit 03acba6f1a851064ba1fa78965ece4354d499c04)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
1 parent e009a91
Raw File
Tip revision: f3dca6acee609a3a12f22152fd98602c1cbadde0 authored by Miss Islington (bot) on 29 August 2019, 06:12:13 UTC
bpo-25777: Wording describes a lookup, not a call (GH-15573) (GH-15576)
Tip revision: f3dca6a
traceback.h
#ifndef Py_TRACEBACK_H
#define Py_TRACEBACK_H
#ifdef __cplusplus
extern "C" {
#endif

struct _frame;

/* Traceback interface */

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) (Py_TYPE(v) == &PyTraceBack_Type)


#ifndef Py_LIMITED_API
#  define Py_CPYTHON_TRACEBACK_H
#  include  "cpython/traceback.h"
#  undef Py_CPYTHON_TRACEBACK_H
#endif

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