summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-02 18:17:50 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-02 18:17:50 (GMT)
commit968a3e570dd24594be28c31640517c0e4b0c8860 (patch)
tree3335433f883172c847bdace3cf17a9b47aa91c07 /Doc/glossary.rst
parent584265b0010c660af21d3b22ac18fff0da678dd0 (diff)
downloadcpython-968a3e570dd24594be28c31640517c0e4b0c8860.zip
cpython-968a3e570dd24594be28c31640517c0e4b0c8860.tar.gz
cpython-968a3e570dd24594be28c31640517c0e4b0c8860.tar.bz2
Fix a sentence I missed before. Do not merge to 3k.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 52a8415..c834743 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -412,7 +412,7 @@ Glossary
:term:`immutable` keys rather than integers.
slice
- A list containing a portion of an indexed list-like object. A slice is
+ An object usually containing a portion of a :term:`sequence`. A slice is
created using the subscript notation, ``[]`` with colons between numbers
when several are given, such as in ``variable_name[1:3:5]``. The bracket
(subscript) notation uses :class:`slice` objects internally (or in older