diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-03 09:39:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 09:39:11 (GMT) |
commit | 35963da40fb7bc93c55d94caf58ff9e268df951d (patch) | |
tree | 06f5c1ef62c3f23351ecc9de7caf260f42a4c937 /Objects/rangeobject.c | |
parent | 5ccbbe5bb9a659fa8f2fe551428c84cc14015f44 (diff) | |
download | cpython-35963da40fb7bc93c55d94caf58ff9e268df951d.zip cpython-35963da40fb7bc93c55d94caf58ff9e268df951d.tar.gz cpython-35963da40fb7bc93c55d94caf58ff9e268df951d.tar.bz2 |
gh-106320: Create pycore_modsupport.h header file (#106355)
Remove the following functions from the C API, move them to the internal C
API: add a new pycore_modsupport.h internal header file:
* PyModule_CreateInitialized()
* _PyArg_NoKwnames()
* _Py_VaBuildStack()
No longer export these functions.
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r-- | Objects/rangeobject.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index beb86b9..6dc41d7 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -2,8 +2,9 @@ #include "Python.h" #include "pycore_abstract.h" // _PyIndex_Check() -#include "pycore_range.h" #include "pycore_long.h" // _PyLong_GetZero() +#include "pycore_modsupport.h" // _PyArg_NoKwnames() +#include "pycore_range.h" #include "pycore_tuple.h" // _PyTuple_ITEMS() #include "structmember.h" // PyMemberDef |