
python-checkins at python
Mar 31, 2012, 7:30 PM
Post #1 of 1
(27 views)
Permalink
|
|
peps: PEP 418: time.get clock info(), rename "monotonic" option to "is monotonic"
|
|
http://hg.python.org/peps/rev/4b3e9b3e37ba changeset: 4185:4b3e9b3e37ba user: Victor Stinner <victor.stinner [at] gmail> date: Sun Apr 01 04:30:13 2012 +0200 summary: PEP 418: time.get_clock_info(), rename "monotonic" option to "is_monotonic" files: pep-0418.txt | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pep-0418.txt b/pep-0418.txt --- a/pep-0418.txt +++ b/pep-0418.txt @@ -214,7 +214,7 @@ * "function" (str): name of the underlying operating system function (ex: "QueryPerformanceCounter()" or "clock_gettime(CLOCK_REALTIME)") * "resolution" (float): resolution in seconds of the function - * "monotonic" (bool): True if the clock is monotonic + * "is_monotonic" (bool): True if the clock is monotonic Hardware clocks -- Repository URL: http://hg.python.org/peps
|