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/thread_pthread.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/thread_pthread.h') diff --git a/Python/thread_pthread.h b/Python/thread_pthread.h index e3497e7d595..440d845312a 100644 --- a/Python/thread_pthread.h +++ b/Python/thread_pthread.h @@ -1,3 +1,4 @@ +#include "pycore_interp.h" // _PyInterpreterState.pythread_stacksize /* Posix threads interface */ -- cgit v1.2.3