From 968a3e570dd24594be28c31640517c0e4b0c8860 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 2 Dec 2007 18:17:50 +0000 Subject: [PATCH] Fix a sentence I missed before. Do not merge to 3k. --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 52a84155ec2..c8347431e1d 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