summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2012-02-08 01:43:34 +0100
committerVictor Stinner <victor.stinner@haypocalc.com>2012-02-08 01:43:34 +0100
commit2e63177e940bd0dcc463c06b2f2b1e68e9d8637f (patch)
tree3082cc08c2a5e7bc35eeab101bda39e95fb07b61
parent09225b73c1460c2b725b009eb8c9cf320fa22d5d (diff)
downloadcpython-git-2e63177e940bd0dcc463c06b2f2b1e68e9d8637f.tar.gz
What's New in 3.3: Fix time module doc
-rw-r--r--Doc/whatsnew/3.3.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index d3044b3f99..ead38cea6d 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`)