diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 02:04:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 02:04:42 +0200 |
commit | 62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f (patch) | |
tree | 6fe82dd9494ae4de5041b16e18816973904d110b /Python/ceval.c | |
parent | d01628e411752ee6849f862cae66a1c69fe512b7 (diff) | |
download | cpython-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/ceval.c')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 505f05cadd..5e54356719 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -240,7 +240,6 @@ UNSIGNAL_ASYNC_EXC(PyInterpreterState *interp) #ifdef HAVE_ERRNO_H #include <errno.h> #endif -#include "pythread.h" #include "ceval_gil.h" static void |