projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09225b7
)
What's New in 3.3: Fix time module doc
author
Victor Stinner
<victor.stinner@haypocalc.com>
Wed, 8 Feb 2012 00:43:34 +0000
(
01:43
+0100)
committer
Victor Stinner
<victor.stinner@haypocalc.com>
Wed, 8 Feb 2012 00:43:34 +0000
(
01:43
+0100)
Doc/whatsnew/3.3.rst
patch
|
blob
|
history
diff --git
a/Doc/whatsnew/3.3.rst
b/Doc/whatsnew/3.3.rst
index d3044b3f99af1834237ed2b4f60dffd3dd849a94..ead38cea6d601325f325d48bf933b49be0b1400b 100644
(file)
--- 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`)