Now map and filter also return an iterator

This commit is contained in:
Neal Norwitz 2007-07-03 06:05:09 +00:00
parent 35bcc8d49e
commit a6928ec6ff
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ Built-in Namespace
==================
* Make built-ins return an iterator where appropriate (e.g. ``range()``,
``zip()``, ``map()``, ``filter()``, etc.) [zip and range: done]
``zip()``, ``map()``, ``filter()``, etc.) [done]
* Relevant functions should consume iterators (e.g. ``min()``,
``max()``) [They already do, since 2.2.]
* Remove ``input()`` and rename ``raw_input()`` to ``input()``.