[Python-checkins] cpython: Issue #22624: Python 3 requires clock() to build

victor.stinner python-checkins at python.org
Fri Jul 8 11:55:52 EDT 2016


https://hg.python.org/cpython/rev/1452520dfe7b
changeset:   102287:1452520dfe7b
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Jul 08 17:55:01 2016 +0200
summary:
  Issue #22624: Python 3 requires clock() to build

files:
  Modules/timemodule.c |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Modules/timemodule.c b/Modules/timemodule.c
--- a/Modules/timemodule.c
+++ b/Modules/timemodule.c
@@ -1034,6 +1034,7 @@
     }
 #endif
 
+    /* Currently, Python 3 requires clock() to build: see issue #22624 */
     return floatclock(info);
 #endif
 }

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list