]> granicus.if.org Git - python/commitdiff
Issue #22624: Python 3 requires clock() to build
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 8 Jul 2016 15:55:01 +0000 (17:55 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 8 Jul 2016 15:55:01 +0000 (17:55 +0200)
Modules/timemodule.c

index 0b6d4618705f9a2be1fb5bb453cc4ba601a9f363..94746444cfb137382e942bdca9f8dc576facca5c 100644 (file)
@@ -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
 }