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/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index 4c6c34c74f..febe971607 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -2,7 +2,7 @@ /* Error handling */ #include "Python.h" -#include "pycore_state.h" +#include "pycore_pystate.h" #ifndef __STDC__ #ifndef MS_WINDOWS -- cgit v1.2.1