2019-05-24 17:01:38 +02:00
|
|
|
#ifndef Py_INTERNAL_PYERRORS_H
|
|
|
|
#define Py_INTERNAL_PYERRORS_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
#endif
|
|
|
|
|
2021-12-09 12:59:26 -07:00
|
|
|
|
|
|
|
/* runtime lifecycle */
|
|
|
|
|
|
|
|
extern PyStatus _PyErr_InitTypes(PyInterpreterState *);
|
2022-01-21 01:42:25 +01:00
|
|
|
extern void _PyErr_FiniTypes(PyInterpreterState *);
|
2021-12-09 12:59:26 -07:00
|
|
|
|
|
|
|
|
|
|
|
/* other API */
|
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
static inline PyObject* _PyErr_Occurred(PyThreadState *tstate)
|
|
|
|
{
|
2019-11-07 12:42:07 +01:00
|
|
|
assert(tstate != NULL);
|
2023-02-08 09:31:12 +00:00
|
|
|
if (tstate->current_exception == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return (PyObject *)Py_TYPE(tstate->current_exception);
|
2019-05-24 17:01:38 +02:00
|
|
|
}
|
|
|
|
|
2020-05-17 22:47:31 -07:00
|
|
|
static inline void _PyErr_ClearExcState(_PyErr_StackItem *exc_state)
|
|
|
|
{
|
2021-12-17 14:46:22 +00:00
|
|
|
Py_CLEAR(exc_state->exc_value);
|
2020-05-17 22:47:31 -07:00
|
|
|
}
|
|
|
|
|
2021-11-25 09:41:28 +00:00
|
|
|
PyAPI_FUNC(PyObject*) _PyErr_StackItemToExcInfoTuple(
|
|
|
|
_PyErr_StackItem *err_info);
|
2019-05-24 17:01:38 +02:00
|
|
|
|
|
|
|
PyAPI_FUNC(void) _PyErr_Fetch(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject **type,
|
|
|
|
PyObject **value,
|
|
|
|
PyObject **traceback);
|
|
|
|
|
2023-02-08 09:31:12 +00:00
|
|
|
extern PyObject *
|
|
|
|
_PyErr_GetRaisedException(PyThreadState *tstate);
|
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
PyAPI_FUNC(int) _PyErr_ExceptionMatches(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *exc);
|
|
|
|
|
2023-02-08 09:31:12 +00:00
|
|
|
void
|
|
|
|
_PyErr_SetRaisedException(PyThreadState *tstate, PyObject *exc);
|
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
PyAPI_FUNC(void) _PyErr_Restore(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *type,
|
|
|
|
PyObject *value,
|
|
|
|
PyObject *traceback);
|
|
|
|
|
|
|
|
PyAPI_FUNC(void) _PyErr_SetObject(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *type,
|
|
|
|
PyObject *value);
|
|
|
|
|
2020-05-17 22:47:31 -07:00
|
|
|
PyAPI_FUNC(void) _PyErr_ChainStackItem(
|
2020-05-22 13:33:27 -07:00
|
|
|
_PyErr_StackItem *exc_info);
|
2020-05-17 22:47:31 -07:00
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
PyAPI_FUNC(void) _PyErr_Clear(PyThreadState *tstate);
|
|
|
|
|
|
|
|
PyAPI_FUNC(void) _PyErr_SetNone(PyThreadState *tstate, PyObject *exception);
|
|
|
|
|
2019-06-13 22:41:23 +02:00
|
|
|
PyAPI_FUNC(PyObject *) _PyErr_NoMemory(PyThreadState *tstate);
|
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
PyAPI_FUNC(void) _PyErr_SetString(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *exception,
|
|
|
|
const char *string);
|
|
|
|
|
|
|
|
PyAPI_FUNC(PyObject *) _PyErr_Format(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *exception,
|
|
|
|
const char *format,
|
|
|
|
...);
|
|
|
|
|
|
|
|
PyAPI_FUNC(void) _PyErr_NormalizeException(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject **exc,
|
|
|
|
PyObject **val,
|
|
|
|
PyObject **tb);
|
|
|
|
|
2019-11-05 01:22:12 +01:00
|
|
|
PyAPI_FUNC(PyObject *) _PyErr_FormatFromCauseTstate(
|
|
|
|
PyThreadState *tstate,
|
|
|
|
PyObject *exception,
|
|
|
|
const char *format,
|
|
|
|
...);
|
|
|
|
|
2021-12-14 16:48:15 +00:00
|
|
|
PyAPI_FUNC(PyObject *) _PyExc_CreateExceptionGroup(
|
|
|
|
const char *msg,
|
|
|
|
PyObject *excs);
|
|
|
|
|
2022-01-02 23:22:42 +00:00
|
|
|
PyAPI_FUNC(PyObject *) _PyExc_PrepReraiseStar(
|
|
|
|
PyObject *orig,
|
|
|
|
PyObject *excs);
|
2021-12-14 16:48:15 +00:00
|
|
|
|
2020-03-26 22:28:11 +01:00
|
|
|
PyAPI_FUNC(int) _PyErr_CheckSignalsTstate(PyThreadState *tstate);
|
|
|
|
|
2021-01-18 20:47:13 +01:00
|
|
|
PyAPI_FUNC(void) _Py_DumpExtensionModules(int fd, PyInterpreterState *interp);
|
|
|
|
|
2021-04-14 02:36:07 +01:00
|
|
|
extern PyObject* _Py_Offer_Suggestions(PyObject* exception);
|
2021-05-03 11:47:27 -04:00
|
|
|
PyAPI_FUNC(Py_ssize_t) _Py_UTF8_Edit_Cost(PyObject *str_a, PyObject *str_b,
|
|
|
|
Py_ssize_t max_cost);
|
2021-04-14 02:36:07 +01:00
|
|
|
|
2023-04-11 11:53:06 +01:00
|
|
|
void _PyErr_FormatNote(const char *format, ...);
|
|
|
|
|
2019-05-24 17:01:38 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_INTERNAL_PYERRORS_H */
|