mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
GH-115802: JIT "small" code for Windows (GH-115964)
This commit is contained in:
parent
45d8871dc4
commit
f0df35eeca
26 changed files with 129 additions and 96 deletions
|
@ -95,7 +95,7 @@ extern void _PyErr_Fetch(
|
|||
|
||||
extern PyObject* _PyErr_GetRaisedException(PyThreadState *tstate);
|
||||
|
||||
extern int _PyErr_ExceptionMatches(
|
||||
PyAPI_FUNC(int) _PyErr_ExceptionMatches(
|
||||
PyThreadState *tstate,
|
||||
PyObject *exc);
|
||||
|
||||
|
@ -114,18 +114,18 @@ extern void _PyErr_SetObject(
|
|||
|
||||
extern void _PyErr_ChainStackItem(void);
|
||||
|
||||
extern void _PyErr_Clear(PyThreadState *tstate);
|
||||
PyAPI_FUNC(void) _PyErr_Clear(PyThreadState *tstate);
|
||||
|
||||
extern void _PyErr_SetNone(PyThreadState *tstate, PyObject *exception);
|
||||
|
||||
extern PyObject* _PyErr_NoMemory(PyThreadState *tstate);
|
||||
|
||||
extern void _PyErr_SetString(
|
||||
PyAPI_FUNC(void) _PyErr_SetString(
|
||||
PyThreadState *tstate,
|
||||
PyObject *exception,
|
||||
const char *string);
|
||||
|
||||
extern PyObject* _PyErr_Format(
|
||||
PyAPI_FUNC(PyObject*) _PyErr_Format(
|
||||
PyThreadState *tstate,
|
||||
PyObject *exception,
|
||||
const char *format,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue