summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 02:04:42 +0200
committerGitHub <noreply@github.com>2020-04-15 02:04:42 +0200
commit62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f (patch)
tree6fe82dd9494ae4de5041b16e18816973904d110b /Python/sysmodule.c
parentd01628e411752ee6849f862cae66a1c69fe512b7 (diff)
downloadcpython-git-62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f.tar.gz
bpo-40268: Remove explicit pythread.h includes (#19529)
Remove explicit pythread.h includes: it is always included by Python.h.
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c1
1 files changed, 0 insertions, 1 deletions
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"