[Python-checkins] r86463 - python/branches/py3k/Doc/glossary.rst

raymond.hettinger python-checkins at python.org
Sun Nov 14 06:27:15 CET 2010


Author: raymond.hettinger
Date: Sun Nov 14 06:27:15 2010
New Revision: 86463

Log:
Issue 10410:  An iterable is not necessarily a container.

Modified:
   python/branches/py3k/Doc/glossary.rst

Modified: python/branches/py3k/Doc/glossary.rst
==============================================================================
--- python/branches/py3k/Doc/glossary.rst	(original)
+++ python/branches/py3k/Doc/glossary.rst	Sun Nov 14 06:27:15 2010
@@ -322,7 +322,7 @@
       slowly.  See also :term:`interactive`.
 
    iterable
-      A container object capable of returning its members one at a
+      An object capable of returning its members one at a
       time. Examples of iterables include all sequence types (such as
       :class:`list`, :class:`str`, and :class:`tuple`) and some non-sequence
       types like :class:`dict` and :class:`file` and objects of any classes you


More information about the Python-checkins mailing list