From 17dbd4078b68db8954df6b5cdc40b786bc4ad7af Mon Sep 17 00:00:00 2001 From: Nicholas Sim Date: Tue, 16 Feb 2021 20:04:38 +0800 Subject: bpo-35134, Include: Move pytime.h to cpython/pytime.h (GH-23988) This change is backward compatible since C extension modules must not include "pytime.h" directly, but only include "Python.h". --- Modules/gcmodule.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Modules/gcmodule.c') diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index fdbba6a7af..f0d5699490 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -31,7 +31,6 @@ #include "pycore_pyerrors.h" #include "pycore_pystate.h" // _PyThreadState_GET() #include "pydtrace.h" -#include "pytime.h" // _PyTime_GetMonotonicClock() typedef struct _gc_runtime_state GCState; -- cgit v1.2.1