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". --- Include/Python.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index 57f71d41d8..76ead9e576 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -82,7 +82,6 @@ #error "PYMALLOC_DEBUG requires WITH_PYMALLOC" #endif #include "pymath.h" -#include "pytime.h" #include "pymem.h" #include "object.h" @@ -128,6 +127,7 @@ #include "structseq.h" #include "namespaceobject.h" #include "picklebufobject.h" +#include "cpython/pytime.h" #include "codecs.h" #include "pyerrors.h" -- cgit v1.2.1