From: Victor Stinner Date: Wed, 8 Feb 2012 00:43:34 +0000 (+0100) Subject: What's New in 3.3: Fix time module doc X-Git-Tag: v3.3.0a1~227 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e63177e940bd0dcc463c06b2f2b1e68e9d8637f;p=thirdparty%2FPython%2Fcpython.git What's New in 3.3: Fix time module doc --- diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index d3044b3f99af..ead38cea6d60 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -399,9 +399,9 @@ time 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`)