summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-12 16:53:38 +0100
committerGitHub <noreply@github.com>2018-11-12 16:53:38 +0100
commit621cebe81b1e6c8de10425955bf532d31ee4df42 (patch)
treed3122165505facaf5cea3bc1f8157356805419e0 /Parser
parent19c46a4c96553b2a8390bf8a0e138f2b23e28ed6 (diff)
downloadcpython-git-621cebe81b1e6c8de10425955bf532d31ee4df42.tar.gz
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 'Parser')
-rw-r--r--Parser/myreadline.c2
-rw-r--r--Parser/pgenmain.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/Parser/myreadline.c b/Parser/myreadline.c
index f511319814..acb4d01fdf 100644
--- a/Parser/myreadline.c
+++ b/Parser/myreadline.c
@@ -10,7 +10,7 @@
*/
#include "Python.h"
-#include "pycore_state.h"
+#include "pycore_pystate.h"
#ifdef MS_WINDOWS
#define WIN32_LEAN_AND_MEAN
#include "windows.h"
diff --git a/Parser/pgenmain.c b/Parser/pgenmain.c
index 9e2159b347..fa6c88253c 100644
--- a/Parser/pgenmain.c
+++ b/Parser/pgenmain.c
@@ -16,8 +16,8 @@
#define PGEN
#include "Python.h"
-#include "pycore_mem.h"
-#include "pycore_state.h"
+#include "pycore_pymem.h"
+#include "pycore_pystate.h"
#include "pgenheaders.h"
#include "grammar.h"
#include "node.h"