mirror of
https://github.com/python/cpython.git
synced 2025-11-26 13:22:51 +00:00
Fixed declarations of _Py_DumpTraceback() and _Py_DumpTracebackThreads().
This commit is contained in:
parent
d6e6f8b829
commit
f5f37d784b
1 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ PyAPI_DATA(PyTypeObject) PyTraceBack_Type;
|
||||||
|
|
||||||
This function is signal safe. */
|
This function is signal safe. */
|
||||||
|
|
||||||
PyAPI_DATA(void) _Py_DumpTraceback(
|
PyAPI_FUNC(void) _Py_DumpTraceback(
|
||||||
int fd,
|
int fd,
|
||||||
PyThreadState *tstate);
|
PyThreadState *tstate);
|
||||||
|
|
||||||
|
|
@ -62,7 +62,7 @@ PyAPI_DATA(void) _Py_DumpTraceback(
|
||||||
|
|
||||||
This function is signal safe. */
|
This function is signal safe. */
|
||||||
|
|
||||||
PyAPI_DATA(const char*) _Py_DumpTracebackThreads(
|
PyAPI_FUNC(const char*) _Py_DumpTracebackThreads(
|
||||||
int fd, PyInterpreterState *interp,
|
int fd, PyInterpreterState *interp,
|
||||||
PyThreadState *current_thread);
|
PyThreadState *current_thread);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue