diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 22:55:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 22:55:09 (GMT) |
commit | 8c3aee65ed3aff3668da330ccd6f9ba7b2aa4567 (patch) | |
tree | 2397a0bbe5d560316ee8bf2c199a9b4c4cb25fda /PCbuild | |
parent | 98921aeaf5879b51e2dd1870c9285cfa8d1a52c7 (diff) | |
download | cpython-8c3aee65ed3aff3668da330ccd6f9ba7b2aa4567.zip cpython-8c3aee65ed3aff3668da330ccd6f9ba7b2aa4567.tar.gz cpython-8c3aee65ed3aff3668da330ccd6f9ba7b2aa4567.tar.bz2 |
bpo-35134: Add Include/cpython/fileutils.h header file (GH-18493)
Move CPython C API from Include/fileutils.h into a new
Include/cpython/fileutils.h header file which is included by
Include/fileutils.h.
Exclude the following private symbols from the limited C API:
* _Py_error_handler
* _Py_GetErrorHandler()
* _Py_DecodeLocaleEx()
* _Py_EncodeLocaleEx()
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 9e6323f..0acf7f4 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -131,6 +131,7 @@ <ClInclude Include="..\Include\cpython\ceval.h" /> <ClInclude Include="..\Include\cpython\dictobject.h" /> <ClInclude Include="..\Include\cpython\fileobject.h" /> + <ClInclude Include="..\Include\cpython\fileutils.h" /> <ClInclude Include="..\Include\cpython\import.h" /> <ClInclude Include="..\Include\cpython\initconfig.h" /> <ClInclude Include="..\Include\cpython\listobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index b1412d5..a846a37 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -96,6 +96,9 @@ <ClInclude Include="..\Include\cpython\fileobject.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\fileutils.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\import.h"> <Filter>Include</Filter> </ClInclude> |