FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Include/traceback.h at e68d4b08ff13a06a2c2877f63bf856e6bf3c2e77 · python/cpython · GitHub
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
36.1k
Star
77.2k
Code
Issues
5k+
Pull requests
2.7k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Include
/
traceback.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (20 loc) · 585 Bytes
Breadcrumbs
cpython
/
Include
/
traceback.h
Copy path
File metadata and controls
26 lines (20 loc) · 585 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef
Py_TRACEBACK_H
#define
Py_TRACEBACK_H
#ifdef
__cplusplus
extern
"C"
{
#endif
/* Traceback interface */
PyAPI_FUNC
(
int
)
PyTraceBack_Here
(
PyFrameObject
*
);
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_IS_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
|
FazBrowse Home
|
New Git URL