[Python-checkins] r59279 - python/trunk/Doc/glossary.rst

georg.brandl python-checkins at python.org
Sun Dec 2 19:17:50 CET 2007


Author: georg.brandl
Date: Sun Dec  2 19:17:50 2007
New Revision: 59279

Modified:
   python/trunk/Doc/glossary.rst
Log:
Fix a sentence I missed before. Do not merge to 3k.


Modified: python/trunk/Doc/glossary.rst
==============================================================================
--- python/trunk/Doc/glossary.rst	(original)
+++ python/trunk/Doc/glossary.rst	Sun Dec  2 19:17:50 2007
@@ -412,7 +412,7 @@
       :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


More information about the Python-checkins mailing list