diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-07 08:20:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-07 08:20:21 (GMT) |
commit | bec4186c67345f1e6cd3f8a531bc228f14d7ed7b (patch) | |
tree | 086a9aa1b686fce5c5803a4c6c94630681d9ee76 /Makefile.pre.in | |
parent | d2ec81a8c99796b51fb8c49b77a7fe369863226f (diff) | |
download | cpython-bec4186c67345f1e6cd3f8a531bc228f14d7ed7b.zip cpython-bec4186c67345f1e6cd3f8a531bc228f14d7ed7b.tar.gz cpython-bec4186c67345f1e6cd3f8a531bc228f14d7ed7b.tar.bz2 |
bpo-35134: Create Include/cpython/listobject.h (GH-18395)
Move listobject.h code surrounded by "#ifndef Py_LIMITED_API"
to a new Include/cpython/listobject.h header file.
Add cpython/ header files to Makefile.pre.in and pythoncore project
of PCbuild.
Add _PyList_CAST() macro.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index d430dc3..510f227 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1063,6 +1063,7 @@ PYTHON_HEADERS= \ $(srcdir)/Include/cpython/import.h \ $(srcdir)/Include/cpython/initconfig.h \ $(srcdir)/Include/cpython/interpreteridobject.h \ + $(srcdir)/Include/cpython/listobject.h \ $(srcdir)/Include/cpython/object.h \ $(srcdir)/Include/cpython/objimpl.h \ $(srcdir)/Include/cpython/pyerrors.h \ |