diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-12-03 10:46:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 10:46:16 (GMT) |
commit | 2ad93821a69e6efac3b0efe1d205d6e5ef030791 (patch) | |
tree | 1f13d7f20f919864be2571adaa8a2e13daff4609 /PCbuild | |
parent | f3c3ea91a76526edff928c95b9c6767e077b7448 (diff) | |
download | cpython-2ad93821a69e6efac3b0efe1d205d6e5ef030791.zip cpython-2ad93821a69e6efac3b0efe1d205d6e5ef030791.tar.gz cpython-2ad93821a69e6efac3b0efe1d205d6e5ef030791.tar.bz2 |
bpo-42431: Fix outdated bytes comments (GH-23458)
Also move definitions of internal macros F_LJUST etc to private header.
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 18edba8..cf78714 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -176,6 +176,7 @@ <ClInclude Include="..\Include\internal\pycore_context.h" /> <ClInclude Include="..\Include\internal\pycore_dtoa.h" /> <ClInclude Include="..\Include\internal\pycore_fileutils.h" /> + <ClInclude Include="..\Include\internal\pycore_format.h" /> <ClInclude Include="..\Include\internal\pycore_gc.h" /> <ClInclude Include="..\Include\internal\pycore_getopt.h" /> <ClInclude Include="..\Include\internal\pycore_gil.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 281bce1..ba84ab9 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -510,6 +510,9 @@ <ClInclude Include="..\Include\internal\pycore_fileutils.h"> <Filter>Include\internal</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pycore_format.h"> + <Filter>Include\internal</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pycore_gc.h"> <Filter>Include\internal</Filter> </ClInclude> |