[Python-checkins] cpython: What's New in 3.3: Fix time module doc

victor.stinner python-checkins at python.org
Wed Feb 8 01:43:01 CET 2012


http://hg.python.org/cpython/rev/139b699c6117
changeset:   74822:139b699c6117
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Wed Feb 08 01:43:34 2012 +0100
summary:
  What's New in 3.3: Fix time module doc

files:
  Doc/whatsnew/3.3.rst |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -399,9 +399,9 @@
 The :mod:`time` module has new functions:
 
 * :func:`~time.clock_getres` and :func:`~time.clock_gettime` functions and
-  ``CLOCK_xxx`` constants.  :func:`~time.clock_gettime` can be used with
-  :data:`time.CLOCK_MONOTONIC` to get a monotonic clock.
-* :func:`~time.wallclock`: monotonic clock.
+  ``CLOCK_xxx`` constants.
+* :func:`~time.monotonic`: monotonic clock.
+* :func:`~time.wallclock`.
 
 (Contributed by Victor Stinner in :issue:`10278`)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list