summaryrefslogtreecommitdiff
path: root/Modules/gcmodule.c
diff options
context:
space:
mode:
authorNicholas Sim <nsim+github@posteo.net>2021-02-16 20:04:38 +0800
committerGitHub <noreply@github.com>2021-02-16 13:04:38 +0100
commit17dbd4078b68db8954df6b5cdc40b786bc4ad7af (patch)
treee48e54740a78deac7d08fb72ad2a1fb15fce8cc1 /Modules/gcmodule.c
parent871eb4237b9be95263ca13ba8856e78344eb9eba (diff)
downloadcpython-git-17dbd4078b68db8954df6b5cdc40b786bc4ad7af.tar.gz
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".
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r--Modules/gcmodule.c1
1 files changed, 0 insertions, 1 deletions
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;