diff options
author | Victor Stinner <vstinner@python.org> | 2020-02-12 22:32:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-12 22:32:34 +0100 |
commit | 45876a90e2663f12b90c2090ec3e48bd97841aae (patch) | |
tree | ece53599591dd1bdcbdf1fe0dfe507c77da4b664 /PCbuild | |
parent | 6e619c48b8e804ece9521453fc8da0640a04d5b1 (diff) | |
download | cpython-git-45876a90e2663f12b90c2090ec3e48bd97841aae.tar.gz |
bpo-35081: Move bytes_methods.h to the internal C API (GH-18492)
Move the bytes_methods.h header file to the internal C API as
pycore_bytes_methods.h: it only contains private symbols (prefixed by
"_Py"), except of the PyDoc_STRVAR_shared() macro.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 36a27f4674..a3719d8558 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -115,7 +115,6 @@ <ClInclude Include="..\Include\ast.h" /> <ClInclude Include="..\Include\bitset.h" /> <ClInclude Include="..\Include\boolobject.h" /> - <ClInclude Include="..\Include\bytes_methods.h" /> <ClInclude Include="..\Include\bytearrayobject.h" /> <ClInclude Include="..\Include\bytesobject.h" /> <ClInclude Include="..\Include\cellobject.h" /> @@ -161,6 +160,7 @@ <ClInclude Include="..\Include\import.h" /> <ClInclude Include="..\Include\internal\pycore_accu.h" /> <ClInclude Include="..\Include\internal\pycore_atomic.h" /> + <ClInclude Include="..\Include\internal\pycore_bytes_methods.h" /> <ClInclude Include="..\Include\internal\pycore_call.h" /> <ClInclude Include="..\Include\internal\pycore_ceval.h" /> <ClInclude Include="..\Include\internal\pycore_code.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 0301557b3e..67e223dab4 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -48,9 +48,6 @@ <ClInclude Include="..\Include\boolobject.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\bytes_methods.h"> - <Filter>Include</Filter> - </ClInclude> <ClInclude Include="..\Include\bytearrayobject.h"> <Filter>Include</Filter> </ClInclude> @@ -186,6 +183,9 @@ <ClInclude Include="..\Include\internal\pycore_atomic.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_bytes_methods.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_call.h"> <Filter>Include</Filter> </ClInclude> |