[Python-checkins] cpython: Fix indentation.

georg.brandl python-checkins at python.org
Thu Mar 22 22:20:53 CET 2012


http://hg.python.org/cpython/rev/449a0eae0415
changeset:   75889:449a0eae0415
user:        Georg Brandl <georg at python.org>
date:        Thu Mar 22 22:20:21 2012 +0100
summary:
  Fix indentation.

files:
  Doc/library/stdtypes.rst |  5 +++--
  1 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1663,14 +1663,15 @@
 
    Return the number of *i*'s for which ``s[i] == x``.
 
-    .. versionadded:: 3.2
+   .. versionadded:: 3.2
 
 .. method:: range.index(x)
 
    Return the smallest *i* such that ``s[i] == x``.  Raises
    :exc:`ValueError` when *x* is not in the range.
 
-    .. versionadded:: 3.2
+   .. versionadded:: 3.2
+
 
 .. _typesseq-mutable:
 

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


More information about the Python-checkins mailing list