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 /Include/internal | |
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 'Include/internal')
-rw-r--r-- | Include/internal/pycore_pyhash.h (renamed from Include/internal/pycore_hash.h) | 0 | ||||
-rw-r--r-- | Include/internal/pycore_pylifecycle.h (renamed from Include/internal/pycore_lifecycle.h) | 0 | ||||
-rw-r--r-- | Include/internal/pycore_pymem.h (renamed from Include/internal/pycore_mem.h) | 0 | ||||
-rw-r--r-- | Include/internal/pycore_pystate.h (renamed from Include/internal/pycore_state.h) | 2 |
4 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_hash.h b/Include/internal/pycore_pyhash.h index babbc95..babbc95 100644 --- a/Include/internal/pycore_hash.h +++ b/Include/internal/pycore_pyhash.h diff --git a/Include/internal/pycore_lifecycle.h b/Include/internal/pycore_pylifecycle.h index e104316..e104316 100644 --- a/Include/internal/pycore_lifecycle.h +++ b/Include/internal/pycore_pylifecycle.h diff --git a/Include/internal/pycore_mem.h b/Include/internal/pycore_pymem.h index 247426a..247426a 100644 --- a/Include/internal/pycore_mem.h +++ b/Include/internal/pycore_pymem.h diff --git a/Include/internal/pycore_state.h b/Include/internal/pycore_pystate.h index 01f2140..4f5545a 100644 --- a/Include/internal/pycore_state.h +++ b/Include/internal/pycore_pystate.h @@ -12,8 +12,8 @@ extern "C" { #include "pythread.h" #include "pycore_ceval.h" -#include "pycore_mem.h" #include "pycore_pathconfig.h" +#include "pycore_pymem.h" #include "pycore_warnings.h" |