summaryrefslogtreecommitdiffstats
path: root/Doc/library/stdtypes.rst
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2016-12-30 03:57:40 (GMT)
committerXiang Zhang <angwerzx@126.com>2016-12-30 03:57:40 (GMT)
commit9ea82ddad55d38ffad3cff5ce8afadaf0eaa59a3 (patch)
tree3ea87f5910ad659736e22964b3be6597861b11a9 /Doc/library/stdtypes.rst
parent771cf898f43a87930d174e7eefbf2acfe1d8443c (diff)
parentcea904f28643cb97b2347e98bb418c51bf9b91d3 (diff)
downloadcpython-9ea82ddad55d38ffad3cff5ce8afadaf0eaa59a3.zip
cpython-9ea82ddad55d38ffad3cff5ce8afadaf0eaa59a3.tar.gz
cpython-9ea82ddad55d38ffad3cff5ce8afadaf0eaa59a3.tar.bz2
Issue #29112: Merge 3.5.
Diffstat (limited to 'Doc/library/stdtypes.rst')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index c0251ea..9a4f42c 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -927,7 +927,7 @@ Notes:
:ref:`faq-multidimensional-list`.
(3)
- If *i* or *j* is negative, the index is relative to the end of the string:
+ If *i* or *j* is negative, the index is relative to the end of sequence *s*:
``len(s) + i`` or ``len(s) + j`` is substituted. But note that ``-0`` is
still ``0``.