summaryrefslogtreecommitdiffstats
path: root/Modules/timemodule.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-07-08 15:55:01 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-07-08 15:55:01 (GMT)
commit53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52 (patch)
treeaddcda3190611aca7874679540366242cce18317 /Modules/timemodule.c
parentd3b96e1cd4f23bc843f05a5677e7d7d61a7b68b0 (diff)
downloadcpython-53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52.zip
cpython-53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52.tar.gz
cpython-53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52.tar.bz2
Issue #22624: Python 3 requires clock() to build
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r--Modules/timemodule.c1
1 files changed, 1 insertions, 0 deletions
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
}