diff options
author | Maggie Moss <MaggieMoss@users.noreply.github.com> | 2020-09-09 20:23:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 20:23:24 (GMT) |
commit | 1b4552c5e8e925f24c15f707050f22c977171125 (patch) | |
tree | 15102b9c349e4cde9904a1eb3ec1cf3099b877bc /PCbuild | |
parent | fa8c9e70104b0aef966a518eb3a80a4881906ae0 (diff) | |
download | cpython-1b4552c5e8e925f24c15f707050f22c977171125.zip cpython-1b4552c5e8e925f24c15f707050f22c977171125.tar.gz cpython-1b4552c5e8e925f24c15f707050f22c977171125.tar.bz2 |
bpo-41428: Implementation for PEP 604 (GH-21515)
See https://www.python.org/dev/peps/pep-0604/ for more information.
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 2 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 295b5e2..266a193 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -196,6 +196,7 @@ <ClInclude Include="..\Include\internal\pycore_sysmodule.h" /> <ClInclude Include="..\Include\internal\pycore_traceback.h" /> <ClInclude Include="..\Include\internal\pycore_tuple.h" /> + <ClInclude Include="..\Include\internal\pycore_unionobject.h" /> <ClInclude Include="..\Include\internal\pycore_warnings.h" /> <ClInclude Include="..\Include\interpreteridobject.h" /> <ClInclude Include="..\Include\intrcheck.h" /> @@ -412,6 +413,7 @@ <ClCompile Include="..\Objects\typeobject.c" /> <ClCompile Include="..\Objects\unicodectype.c" /> <ClCompile Include="..\Objects\unicodeobject.c" /> + <ClCompile Include="..\Objects\unionobject.c" /> <ClCompile Include="..\Objects\weakrefobject.c" /> <ClCompile Include="..\Parser\myreadline.c" /> <ClCompile Include="..\Parser\tokenizer.c" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index ec82e42..22d9b79 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -573,6 +573,9 @@ <ClInclude Include="..\Include\internal\pycore_tuple.h"> <Filter>Include\internal</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_unionobject.h"> + <Filter>Include\internal</Filter> + </ClInclude> <ClInclude Include="$(zlibDir)\crc32.h"> <Filter>Modules\zlib</Filter> </ClInclude> @@ -1175,6 +1178,9 @@ <ClCompile Include="..\Objects\genericaliasobject.c"> <Filter>Objects</Filter> </ClCompile> + <ClCompile Include="..\Objects\unionobject.c"> + <Filter>Objects</Filter> + </ClCompile> </ItemGroup> <ItemGroup> <ResourceCompile Include="..\PC\python_nt.rc"> |