]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #14428, #14397: Implement the PEP 418
authorVictor Stinner <victor.stinner@gmail.com>
Sun, 29 Apr 2012 00:41:27 +0000 (02:41 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Sun, 29 Apr 2012 00:41:27 +0000 (02:41 +0200)
commitec89539ccccd6103665a7a5c7234cf09f27c1c72
tree5899bfa59a08ae9db3e630c2419ee87b4df6b101
parentca6e40f12a3145856abfe69d5cd8b97df6ebca95
Issue #14428, #14397: Implement the PEP 418

 * 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
Doc/library/time.rst
Doc/whatsnew/3.3.rst
Include/pytime.h
Lib/queue.py
Lib/test/test_time.py
Lib/threading.py
Misc/NEWS
Modules/timemodule.c
Python/pytime.c