mirror of https://github.com/python/cpython
bpo-44231: Don't export internal _PyTuple_FromArray() symbol (GH-26352)
This commit is contained in:
parent
29669245d4
commit
1b940eb410
|
@ -12,7 +12,7 @@ extern "C" {
|
||||||
|
|
||||||
#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
|
#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
|
||||||
|
|
||||||
PyAPI_FUNC(PyObject *) _PyTuple_FromArray(PyObject *const *, Py_ssize_t);
|
extern PyObject *_PyTuple_FromArray(PyObject *const *, Py_ssize_t);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue