summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2016-12-30 03:58:14 (GMT)
committerXiang Zhang <angwerzx@126.com>2016-12-30 03:58:14 (GMT)
commitdfe14c462de137311eafdd80feb1e08b31b9485a (patch)
tree81052afa201b131bc18dd6f4f2d63d95ec2d2330 /Doc
parentf9bd0597bd1468e19e8050a64b75e08d26600df6 (diff)
parent9ea82ddad55d38ffad3cff5ce8afadaf0eaa59a3 (diff)
downloadcpython-dfe14c462de137311eafdd80feb1e08b31b9485a.zip
cpython-dfe14c462de137311eafdd80feb1e08b31b9485a.tar.gz
cpython-dfe14c462de137311eafdd80feb1e08b31b9485a.tar.bz2
Issue #29112: Merge 3.6.
Diffstat (limited to 'Doc')
-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 f4a54f4..d13fc3d 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``.