diff options
author | Aivars KalvÄns <aivars.kalvans@gmail.com> | 2022-07-27 08:43:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-27 08:43:34 (GMT) |
commit | 8c88e360e71c8fd456b261f5c5ccc2d8e4db63a0 (patch) | |
tree | 9b843cce89cc6023014df88ff45ce5eead7a5bad /PCbuild | |
parent | 565403038b75eb64ea483b2757ba30769246d853 (diff) | |
download | cpython-8c88e360e71c8fd456b261f5c5ccc2d8e4db63a0.zip cpython-8c88e360e71c8fd456b261f5c5ccc2d8e4db63a0.tar.gz cpython-8c88e360e71c8fd456b261f5c5ccc2d8e4db63a0.tar.bz2 |
gh-95005: Replace PyAccu with PyUnicodeWriter (gh-95006)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_freeze_module.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/_freeze_module.vcxproj.filters | 5 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
4 files changed, 1 insertions, 10 deletions
diff --git a/PCbuild/_freeze_module.vcxproj b/PCbuild/_freeze_module.vcxproj index 0a74f58..5821c3d 100644 --- a/PCbuild/_freeze_module.vcxproj +++ b/PCbuild/_freeze_module.vcxproj @@ -120,7 +120,6 @@ <ClCompile Include="..\Modules\_io\textio.c" /> <ClCompile Include="..\Modules\_io\winconsoleio.c" /> <ClCompile Include="..\Objects\abstract.c" /> - <ClCompile Include="..\Objects\accu.c" /> <ClCompile Include="..\Objects\boolobject.c" /> <ClCompile Include="..\Objects\bytearrayobject.c" /> <ClCompile Include="..\Objects\bytes_methods.c" /> diff --git a/PCbuild/_freeze_module.vcxproj.filters b/PCbuild/_freeze_module.vcxproj.filters index d107849..b657f56 100644 --- a/PCbuild/_freeze_module.vcxproj.filters +++ b/PCbuild/_freeze_module.vcxproj.filters @@ -25,9 +25,6 @@ <ClCompile Include="..\Objects\abstract.c"> <Filter>Source Files</Filter> </ClCompile> - <ClCompile Include="..\Objects\accu.c"> - <Filter>Source Files</Filter> - </ClCompile> <ClCompile Include="..\Python\asdl.c"> <Filter>Source Files</Filter> </ClCompile> @@ -476,4 +473,4 @@ </None> <!-- END frozen modules --> </ItemGroup> -</Project>
\ No newline at end of file +</Project> diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index b5b4fce..3ff4be5 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -193,7 +193,6 @@ <ClInclude Include="..\Include\frameobject.h" /> <ClInclude Include="..\Include\import.h" /> <ClInclude Include="..\Include\internal\pycore_abstract.h" /> - <ClInclude Include="..\Include\internal\pycore_accu.h" /> <ClInclude Include="..\Include\internal\pycore_asdl.h" /> <ClInclude Include="..\Include\internal\pycore_ast.h" /> <ClInclude Include="..\Include\internal\pycore_ast_state.h" /> @@ -422,7 +421,6 @@ <ClCompile Include="..\Modules\cjkcodecs\multibytecodec.c" /> <ClCompile Include="..\Modules\_winapi.c" /> <ClCompile Include="..\Objects\abstract.c" /> - <ClCompile Include="..\Objects\accu.c" /> <ClCompile Include="..\Objects\boolobject.c" /> <ClCompile Include="..\Objects\bytearrayobject.c" /> <ClCompile Include="..\Objects\bytes_methods.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 774b4b5..64d248d 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -486,9 +486,6 @@ <ClInclude Include="..\Include\internal\pycore_abstract.h"> <Filter>Include\internal</Filter> </ClInclude> - <ClInclude Include="..\Include\internal\pycore_accu.h"> - <Filter>Include\internal</Filter> - </ClInclude> <ClInclude Include="..\Include\internal\pycore_asdl.h"> <Filter>Include\internal</Filter> </ClInclude> |