From 53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 8 Jul 2016 17:55:01 +0200 Subject: Issue #22624: Python 3 requires clock() to build --- Modules/timemodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 0b6d461..9474644 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -1034,6 +1034,7 @@ py_process_time(_Py_clock_info_t *info) } #endif + /* Currently, Python 3 requires clock() to build: see issue #22624 */ return floatclock(info); #endif } -- cgit v0.12