diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-04-12 19:40:14 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-04-12 19:40:14 (GMT) |
commit | 6125e232e26cd806eb5c03005ddf817f5bb73eaf (patch) | |
tree | 6e11f1c9557699cfce9cd7d23c8dc39103cbf8e0 /Doc | |
parent | 84ba495e37d0e61661886fa89bfeb4b88fe1469d (diff) | |
download | cpython-6125e232e26cd806eb5c03005ddf817f5bb73eaf.zip cpython-6125e232e26cd806eb5c03005ddf817f5bb73eaf.tar.gz cpython-6125e232e26cd806eb5c03005ddf817f5bb73eaf.tar.bz2 |
Doc: sort time.CLOCK_xxx constants
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/time.rst | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/time.rst b/Doc/library/time.rst index 8156b01..eddfa11 100644 --- a/Doc/library/time.rst +++ b/Doc/library/time.rst @@ -158,14 +158,6 @@ The module defines the following functions and data items: .. versionadded:: 3.3 -.. data:: CLOCK_REALTIME - - System-wide real-time clock. Setting this clock requires appropriate - privileges. - - .. versionadded:: 3.3 - - .. data:: CLOCK_HIGHRES The Solaris OS has a CLOCK_HIGHRES timer that attempts to use an optimal @@ -200,6 +192,14 @@ The module defines the following functions and data items: .. versionadded:: 3.3 +.. data:: CLOCK_REALTIME + + System-wide real-time clock. Setting this clock requires appropriate + privileges. + + .. versionadded:: 3.3 + + .. data:: CLOCK_THREAD_CPUTIME_ID Thread-specific CPU-time clock. |