summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-03 21:07:25 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-03 21:07:25 (GMT)
commitc6fe37bab927bd00e0f2fed8a431adb7d2b6d303 (patch)
treec296da359291a993629ec9eb502466b5e9edd45a /Doc/glossary.rst
parentcbf3b5cb76906fba15dbf59a1e83c540a447b907 (diff)
downloadcpython-c6fe37bab927bd00e0f2fed8a431adb7d2b6d303.zip
cpython-c6fe37bab927bd00e0f2fed8a431adb7d2b6d303.tar.gz
cpython-c6fe37bab927bd00e0f2fed8a431adb7d2b6d303.tar.bz2
Fix merging glitch.
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 6465c83..3459bda 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -400,7 +400,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.