summaryrefslogtreecommitdiffstats
path: root/Modules/main.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-12 15:53:38 (GMT)
committerGitHub <noreply@github.com>2018-11-12 15:53:38 (GMT)
commit621cebe81b1e6c8de10425955bf532d31ee4df42 (patch)
treed3122165505facaf5cea3bc1f8157356805419e0 /Modules/main.c
parent19c46a4c96553b2a8390bf8a0e138f2b23e28ed6 (diff)
downloadcpython-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 'Modules/main.c')
-rw-r--r--Modules/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/main.c b/Modules/main.c
index c847d1a..281707a 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -3,10 +3,10 @@
#include "Python.h"
#include "osdefs.h"
#include "pycore_getopt.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 <locale.h>