bpo-44231: Don't export internal _PyTuple_FromArray() symbol (GH-26352)

This commit is contained in:
Erlend Egeberg Aasland 2021-05-25 15:58:14 +02:00 committed by GitHub
parent 29669245d4
commit 1b940eb410
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ extern "C" {
#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
}