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 /PCbuild/pythoncore.vcxproj | |
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 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 7d597bc..9e6323f 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -126,6 +126,8 @@ <ClInclude Include="..\Include\complexobject.h" /> <ClInclude Include="..\Include\context.h" /> <ClInclude Include="..\Include\cpython\abstract.h" /> + <ClInclude Include="..\Include\cpython\bytearrayobject.h" /> + <ClInclude Include="..\Include\cpython\bytesobject.h" /> <ClInclude Include="..\Include\cpython\ceval.h" /> <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\fileobject.h" /> |