- 29 Nis, 2012 21 kayıt (commit)
-
-
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 16 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()
-
Brett Cannon yazdı
-
Brett Cannon yazdı
importlib.util.module_for_loader also will set __loader__ along with __package__. This is in conjunction to a forthcoming update to PEP 302 which will make these two attributes required for loaders to set.
-
Victor Stinner yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
finder instead of using some (now non-existent) implicit finder.
-
Benjamin Peterson yazdı
-
Brett Cannon yazdı
-
Brett Cannon yazdı
ImportWarning is raised if sys.meta_path is found to be empty.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
-
Benjamin Peterson yazdı
-
Martin v. Loewis yazdı
-