From 62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 15 Apr 2020 02:04:42 +0200 Subject: bpo-40268: Remove explicit pythread.h includes (#19529) Remove explicit pythread.h includes: it is always included by Python.h. --- Python/sysmodule.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 741979a09a..63111d58ab 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -26,7 +26,6 @@ Data members: #include "pycore_pymem.h" #include "pycore_pystate.h" // _PyThreadState_GET() #include "pycore_tupleobject.h" -#include "pythread.h" #include "pydtrace.h" #include "osdefs.h" -- cgit v1.2.1