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/pylifecycle.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/pylifecycle.c') diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 754e7620a0..974b425712 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -2350,8 +2350,6 @@ Py_ExitStatusException(PyStatus status) /* Clean up and exit */ -# include "pythread.h" - /* For the atexit module. */ void _Py_PyAtExit(void (*func)(PyObject *), PyObject *module) { -- cgit v1.2.1