diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 22:54:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 22:54:31 (GMT) |
commit | 98921aeaf5879b51e2dd1870c9285cfa8d1a52c7 (patch) | |
tree | f801d5336066bb127256276b626a62842cd96011 /Makefile.pre.in | |
parent | e9e7d284c434768333fdfb53a3663eae74cb995a (diff) | |
download | cpython-98921aeaf5879b51e2dd1870c9285cfa8d1a52c7.zip cpython-98921aeaf5879b51e2dd1870c9285cfa8d1a52c7.tar.gz cpython-98921aeaf5879b51e2dd1870c9285cfa8d1a52c7.tar.bz2 |
bpo-35134: Add Include/cpython/bytesobject.h file (GH-18494)
Add Include/cpython/bytearrayobject.h and
Include/cpython/bytesobject.h header files.
Move CPython C API from Include/bytesobject.h into a new
Include/cpython/bytesobject.h header file which is included by
Include/bytesobject.h. Do a similar change for
Include/bytearrayobject.h.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index f5540a2..2f3fab7 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1055,6 +1055,8 @@ PYTHON_HEADERS= \ $(srcdir)/Include/Python-ast.h \ \ $(srcdir)/Include/cpython/abstract.h \ + $(srcdir)/Include/cpython/bytearrayobject.h \ + $(srcdir)/Include/cpython/bytesobject.h \ $(srcdir)/Include/cpython/ceval.h \ $(srcdir)/Include/cpython/dictobject.h \ $(srcdir)/Include/cpython/fileobject.h \ |