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