- 29 Nis, 2012 34 kayıt (commit)
-
-
Brett Cannon yazdı
Thanks to Eric Snow for the patch.
-
Victor Stinner yazdı
time.process_time() is CPU time, not a number of seconds.
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Mark Dickinson yazdı
Issue #14521: Make result of float('nan') and float('-nan') more consistent across platforms. Further, don't rely on Py_HUGE_VAL for float('inf').
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Nick Coghlan yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Senthil Kumaran yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Senthil Kumaran yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
* Replace "time.clock on windows, or time.time" with time.perf_counter() * profile module: only use time.process_time() instead of trying different functions providing the process time * timeit module: use time.perf_counter() by default, time.time() and time.clock() can still be used using --time and --clock options * pybench program: use time.perf_counter() by default, add support for the new time.process_time() and time.perf_counter() functions, but stay backward compatible. Use also time.get_clock_info() to display information of the timer.
-
Victor Stinner yazdı
Use time.perf_counter() or time.process_time() instead.
-
Victor Stinner yazdı
* Rename time.steady() to time.monotonic() * On Windows, time.monotonic() uses GetTickCount/GetTickCount64() instead of QueryPerformanceCounter() * time.monotonic() uses CLOCK_HIGHRES if available * Add time.get_clock_info(), time.perf_counter() and time.process_time() functions
-
- 28 Nis, 2012 3 kayıt (commit)
-
-
Victor Stinner yazdı
not always available.
-
Sandro Tosi yazdı
-
Sandro Tosi yazdı
-
- 27 Nis, 2012 3 kayıt (commit)
-
-
Victor Stinner yazdı
-
Antoine Pitrou yazdı
Also, block delivery of signals to that thread. Patch by Richard Oudkerk. This will hopefully fix sporadic freezes on the FreeBSD 9.0 buildbot.
-
Victor Stinner yazdı
* Remove _PyBytes_FormatLong(): inline it into formatlong() * the input type is always a long, so remove the code for bool * don't duplicate the string if the length does not change * Use PyUnicode_DATA() instead of _PyUnicode_AsString()
-