diff options
author | Raymond Hettinger <python@rcn.com> | 2010-11-14 05:27:15 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-11-14 05:27:15 (GMT) |
commit | b6b76c2f78c658093e4cdfe29ee4bc287b7fc09f (patch) | |
tree | 77ccdbdf07ae43641f92a4caa3b26da5b847ad59 | |
parent | 57f2d62075a3b43398ad38a84e196b174db08215 (diff) | |
download | cpython-b6b76c2f78c658093e4cdfe29ee4bc287b7fc09f.zip cpython-b6b76c2f78c658093e4cdfe29ee4bc287b7fc09f.tar.gz cpython-b6b76c2f78c658093e4cdfe29ee4bc287b7fc09f.tar.bz2 |
Issue 10410: An iterable is not necessarily a container.
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 18df16a..ec75e03 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 |