diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-02-29 16:11:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-29 16:11:28 (GMT) |
commit | f0df35eeca2ccdfd58cfb9801f06ffa23537270b (patch) | |
tree | 9c7c6a5de052e09462b0fda44ac7f55a4032540a /Include/internal/pycore_tuple.h | |
parent | 45d8871dc4da33fcef92991031707c5bf88a40cf (diff) | |
download | cpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.zip cpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.tar.gz cpython-f0df35eeca2ccdfd58cfb9801f06ffa23537270b.tar.bz2 |
GH-115802: JIT "small" code for Windows (GH-115964)
Diffstat (limited to 'Include/internal/pycore_tuple.h')
-rw-r--r-- | Include/internal/pycore_tuple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_tuple.h b/Include/internal/pycore_tuple.h index 4605f35..14a9e42 100644 --- a/Include/internal/pycore_tuple.h +++ b/Include/internal/pycore_tuple.h @@ -21,7 +21,7 @@ extern PyStatus _PyTuple_InitGlobalObjects(PyInterpreterState *); #define _PyTuple_ITEMS(op) _Py_RVALUE(_PyTuple_CAST(op)->ob_item) extern PyObject *_PyTuple_FromArray(PyObject *const *, Py_ssize_t); -extern PyObject *_PyTuple_FromArraySteal(PyObject *const *, Py_ssize_t); +PyAPI_FUNC(PyObject *)_PyTuple_FromArraySteal(PyObject *const *, Py_ssize_t); typedef struct { PyObject_HEAD |