From: Raymond Hettinger Date: Sun, 14 Nov 2010 05:27:15 +0000 (+0000) Subject: Issue 10410: An iterable is not necessarily a container. X-Git-Tag: v3.2b1~367 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b6b76c2f78c658093e4cdfe29ee4bc287b7fc09f;p=thirdparty%2FPython%2Fcpython.git Issue 10410: An iterable is not necessarily a container. --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 18df16a8e489..ec75e0379a60 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -322,7 +322,7 @@ Glossary 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