diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-05-01 13:38:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-05-01 13:38:34 (GMT) |
commit | 49a69e4d48d68a36325ba9098e1962e8c2195339 (patch) | |
tree | e46dc4cc1bd7d5584240a8b7a4f37e6cd4814e9f /Doc/library/time.rst | |
parent | d099b56be77c782b969ccf5912ab01a3b313c759 (diff) | |
download | cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.zip cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.tar.gz cpython-49a69e4d48d68a36325ba9098e1962e8c2195339.tar.bz2 |
strip is_ prefixes on clock_info fields
Diffstat (limited to 'Doc/library/time.rst')
-rw-r--r-- | Doc/library/time.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index 55285d1..0e1c6fb 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -168,11 +168,11 @@ The module defines the following functions and data items: The name of the underlying C function used to get the clock value. - .. attribute:: is_monotonic + .. attribute:: monotonic ``True`` if the clock cannot go backward, ``False`` otherwise. - .. attribute:: is_adjusted + .. attribute:: adjusted ``True`` if the clock can be adjusted (e.g. by a NTP daemon), ``False`` otherwise. |