From 621cebe81b1e6c8de10425955bf532d31ee4df42 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 12 Nov 2018 16:53:38 +0100 Subject: 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 --- Python/pylifecycle.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Python/pylifecycle.c') diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 318d7cb4ba..4ccea2ece2 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -5,10 +5,10 @@ #include "Python-ast.h" #include "pycore_context.h" #include "pycore_hamt.h" -#include "pycore_lifecycle.h" -#include "pycore_mem.h" #include "pycore_pathconfig.h" -#include "pycore_state.h" +#include "pycore_pylifecycle.h" +#include "pycore_pymem.h" +#include "pycore_pystate.h" #include "grammar.h" #include "node.h" #include "token.h" -- cgit v1.2.1