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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52;p=thirdparty%2FPython%2Fcpython.git Issue #22624: Python 3 requires clock() to build --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 0b6d4618705f..94746444cfb1 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 }