Skip to content

Commit 1b940eb

Browse files
author
Erlend Egeberg Aasland
authored
bpo-44231: Don't export internal _PyTuple_FromArray() symbol (GH-26352)
1 parent 2966924 commit 1b940eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Include/internal/pycore_tuple.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extern "C" {
1212

1313
#define _PyTuple_ITEMS(op) (_PyTuple_CAST(op)->ob_item)
1414

15-
PyAPI_FUNC(PyObject *) _PyTuple_FromArray(PyObject *const *, Py_ssize_t);
15+
extern PyObject *_PyTuple_FromArray(PyObject *const *, Py_ssize_t);
1616

1717
#ifdef __cplusplus
1818
}

0 commit comments

Comments
 (0)