diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-07-08 15:55:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-07-08 15:55:01 (GMT) |
commit | 53e22bfea5f2df24ee1d6c034d4fc2c2c1375c52 (patch) | |
tree | addcda3190611aca7874679540366242cce18317 /Modules/timemodule.c | |
parent | d3b96e1cd4f23bc843f05a5677e7d7d61a7b68b0 (diff) | |
download | cpython-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.c | 1 |
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 } |