Skip to content

Commit

Permalink
gh-106320: Remove private _PyList functions (#108451)
Browse files Browse the repository at this point in the history
Move private functions to the internal C API (pycore_list.h):

* _PyList_Extend()
* _PyList_DebugMallocStats()

No longer export these functions.
  • Loading branch information
vstinner authored Aug 24, 2023
1 parent 88941d6 commit c3d580b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions Include/cpython/listobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ typedef struct {
Py_ssize_t allocated;
} PyListObject;

PyAPI_FUNC(PyObject *) _PyList_Extend(PyListObject *, PyObject *);
PyAPI_FUNC(void) _PyList_DebugMallocStats(FILE *out);

/* Cast argument to PyListObject* type. */
#define _PyList_CAST(op) \
(assert(PyList_Check(op)), _Py_CAST(PyListObject*, (op)))
Expand Down
4 changes: 3 additions & 1 deletion Include/internal/pycore_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ extern "C" {
# error "this header requires Py_BUILD_CORE define"
#endif

#include "listobject.h" // _PyList_CAST()

extern PyObject* _PyList_Extend(PyListObject *, PyObject *);
extern void _PyList_DebugMallocStats(FILE *out);


/* runtime lifecycle */
Expand Down

0 comments on commit c3d580b

Please sign in to comment.