From 4a3fe0835310643193ea45529ab0fb45c5f8f2fd Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 14 Apr 2020 14:26:24 +0200 Subject: bpo-40268: Include explicitly pycore_interp.h (GH-19505) pycore_pystate.h no longer includes pycore_interp.h: it's now included explicitly in files accessing PyInterpreterState. --- Python/codecs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/codecs.c') diff --git a/Python/codecs.c b/Python/codecs.c index 7b35ded2ed..66919856ce 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -9,6 +9,7 @@ Copyright (c) Corporation for National Research Initiatives. ------------------------------------------------------------------------ */ #include "Python.h" +#include "pycore_interp.h" // PyInterpreterState.codec_search_path #include "pycore_pystate.h" #include "ucnhash.h" #include -- cgit v1.2.1