diff options
author | Georg Brandl <georg@python.org> | 2012-03-22 21:20:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-22 21:20:21 (GMT) |
commit | 2ac82f8dc9700ec64797026d8634e192db0af1d0 (patch) | |
tree | 55c9606372146d02e20088b61ed4a81c879bfce4 /Doc/library | |
parent | e8b416e754de1299982c030fb342e21bff0e1b31 (diff) | |
download | cpython-2ac82f8dc9700ec64797026d8634e192db0af1d0.zip cpython-2ac82f8dc9700ec64797026d8634e192db0af1d0.tar.gz cpython-2ac82f8dc9700ec64797026d8634e192db0af1d0.tar.bz2 |
Fix indentation.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index a513d40..8fbfcd1 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1663,14 +1663,15 @@ iteration, the :func:`len` function, and the following methods: 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: |