diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-12 16:53:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-12 16:53:38 +0100 |
commit | 621cebe81b1e6c8de10425955bf532d31ee4df42 (patch) | |
tree | d3122165505facaf5cea3bc1f8157356805419e0 /Makefile.pre.in | |
parent | bpo-33695 shutil.copytree() + os.scandir() cache (#7874) (diff) | |
download | cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.gz cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.bz2 cpython-621cebe81b1e6c8de10425955bf532d31ee4df42.zip |
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 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 15f3687be5b..87a84eb6808 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1027,13 +1027,16 @@ PYTHON_HEADERS= \ $(srcdir)/Include/internal/pycore_accu.h \ $(srcdir)/Include/internal/pycore_atomic.h \ $(srcdir)/Include/internal/pycore_ceval.h \ + $(srcdir)/Include/internal/pycore_condvar.h \ $(srcdir)/Include/internal/pycore_context.h \ $(srcdir)/Include/internal/pycore_getopt.h \ $(srcdir)/Include/internal/pycore_gil.h \ - $(srcdir)/Include/internal/pycore_lifecycle.h \ - $(srcdir)/Include/internal/pycore_mem.h \ + $(srcdir)/Include/internal/pycore_hamt.h \ $(srcdir)/Include/internal/pycore_pathconfig.h \ - $(srcdir)/Include/internal/pycore_state.h \ + $(srcdir)/Include/internal/pycore_pyhash.h \ + $(srcdir)/Include/internal/pycore_pylifecycle.h \ + $(srcdir)/Include/internal/pycore_pymem.h \ + $(srcdir)/Include/internal/pycore_pystate.h \ $(srcdir)/Include/internal/pycore_warnings.h \ $(DTRACE_HEADERS) |