[Python-checkins] cpython: Fix newlines.

georg.brandl python-checkins at python.org
Thu Mar 29 09:18:07 CEST 2012


http://hg.python.org/cpython/rev/9304172ee5eb
changeset:   75977:9304172ee5eb
user:        Georg Brandl <georg at python.org>
date:        Thu Mar 29 09:18:14 2012 +0200
summary:
  Fix newlines.

files:
  Doc/library/time.rst |  7 +++++++
  1 files changed, 7 insertions(+), 0 deletions(-)


diff --git a/Doc/library/time.rst b/Doc/library/time.rst
--- a/Doc/library/time.rst
+++ b/Doc/library/time.rst
@@ -143,12 +143,14 @@
 
    .. versionadded:: 3.3
 
+
 .. function:: clock_gettime(clk_id)
 
    Return the time of the specified clock *clk_id*.
 
    .. versionadded:: 3.3
 
+
 .. data:: CLOCK_REALTIME
 
    System-wide real-time clock. Setting this clock requires appropriate
@@ -156,6 +158,7 @@
 
    .. versionadded:: 3.3
 
+
 .. data:: CLOCK_MONOTONIC
 
    Clock that cannot be set and represents monotonic time since some
@@ -163,6 +166,7 @@
 
    .. versionadded:: 3.3
 
+
 .. data:: CLOCK_MONOTONIC_RAW
 
    Similar to :data:`CLOCK_MONOTONIC`, but provides access to a raw
@@ -172,18 +176,21 @@
 
    .. versionadded:: 3.3
 
+
 .. data:: CLOCK_PROCESS_CPUTIME_ID
 
    High-resolution per-process timer from the CPU.
 
    .. versionadded:: 3.3
 
+
 .. data:: CLOCK_THREAD_CPUTIME_ID
 
    Thread-specific CPU-time clock.
 
    .. versionadded:: 3.3
 
+
 .. function:: ctime([secs])
 
    Convert a time expressed in seconds since the epoch to a string representing

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list