diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-12 15:53:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 15:53:38 (GMT) |
commit | 621cebe81b1e6c8de10425955bf532d31ee4df42 (patch) | |
tree | d3122165505facaf5cea3bc1f8157356805419e0 /PCbuild | |
parent | 19c46a4c96553b2a8390bf8a0e138f2b23e28ed6 (diff) | |
download | cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.zip cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.gz cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.bz2 |
bpo-35081: Rename internal headers (GH-10275)
Rename Include/internal/ headers:
* pycore_hash.h -> pycore_pyhash.h
* pycore_lifecycle.h -> pycore_pylifecycle.h
* pycore_mem.h -> pycore_pymem.h
* pycore_state.h -> pycore_pystate.h
Add missing headers to Makefile.pre.in and PCbuild:
* pycore_condvar.h.
* pycore_hamt.h
* pycore_pyhash.h
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 7 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 460500c..0ae24fa 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -119,10 +119,11 @@ <ClInclude Include="..\Include\internal\pycore_getopt.h" /> <ClInclude Include="..\Include\internal\pycore_gil.h" /> <ClInclude Include="..\Include\internal\pycore_hamt.h" /> - <ClInclude Include="..\Include\internal\pycore_lifecycle.h" /> - <ClInclude Include="..\Include\internal\pycore_mem.h" /> <ClInclude Include="..\Include\internal\pycore_pathconfig.h" /> - <ClInclude Include="..\Include\internal\pycore_state.h" /> + <ClInclude Include="..\Include\internal\pycore_pyhash.h" /> + <ClInclude Include="..\Include\internal\pycore_pylifecycle.h" /> + <ClInclude Include="..\Include\internal\pycore_pymem.h" /> + <ClInclude Include="..\Include\internal\pycore_pystate.h" /> <ClInclude Include="..\Include\internal\pycore_warnings.h" /> <ClInclude Include="..\Include\intrcheck.h" /> <ClInclude Include="..\Include\iterobject.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 64fb77b..ef5ef72 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -156,16 +156,19 @@ <ClInclude Include="..\Include\internal\pycore_hamt.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\internal\pycore_lifecycle.h"> + <ClInclude Include="..\Include\internal\pycore_pathconfig.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\internal\pycore_mem.h"> + <ClInclude Include="..\Include\internal\pycore_pyhash.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\internal\pycore_pathconfig.h"> + <ClInclude Include="..\Include\internal\pycore_pylifecycle.h"> + <Filter>Include</Filter> + </ClInclude> + <ClInclude Include="..\Include\internal\pycore_pymem.h"> <Filter>Include</Filter> </ClInclude> - <ClInclude Include="..\Include\internal\pycore_state.h"> + <ClInclude Include="..\Include\internal\pycore_pystate.h"> <Filter>Include</Filter> </ClInclude> <ClInclude Include="..\Include\internal\pycore_warnings.h"> |