From: Victor Stinner Date: Fri, 8 Jul 2016 15:55:01 +0000 (+0200) Subject: Issue #22624: Python 3 requires clock() to build X-Git-Tag: v3.6.0a3~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52;p=python Issue #22624: Python 3 requires clock() to build --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 0b6d461870..94746444cf 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 }