Spell Neal's name correctly. Also, input() and raw_input() are already kicked out.

This commit is contained in:
Georg Brandl 2006-09-06 06:53:05 +00:00
parent 1b26c9f57e
commit 56ff0ac972
1 changed files with 3 additions and 3 deletions

View File

@ -158,7 +158,7 @@ Built-in Namespace
==================
* Make built-ins return an iterator where appropriate (e.g. ``range()``,
``zip()``, etc.) [zip is done; Neil Norwitz has a patch for range()]
``zip()``, etc.) [zip is done; Neal Norwitz has a patch for range()]
* Relevant functions should consume iterators (e.g. ``min()``,
``max()``) [They already do, since 2.2.]
* Introduce ``trunc()``, which would call the ``__trunc__()`` method on its
@ -174,12 +174,12 @@ To be removed:
* ``compile()``: put in ``sys`` (or perhaps in a module of its own) [2]_
* ``coerce()``: no longer needed [2]_
* ``execfile()``, ``reload()``: use ``exec()`` [2]_
* ``input()``: use ``eval(sys.stdin.readline())`` [2]_
* ``input()``: use ``eval(sys.stdin.readline())`` [2]_ [done]
* ``intern()``, ``id()``: put in ``sys`` [2]_
* ``map()``, ``filter()``: use list comprehensions instead??? [1]_, [9]_
(Actually these can stay.)
* ``reduce()``: write a loop instead [2]_, [9]_ [done]
* ``raw_input()``: use ``sys.stdin.readline()`` ??? [2]_
* ``raw_input()``: use ``sys.stdin.readline()`` ??? [2]_ [done]
* ``xrange()``: use ``range()`` instead [1]_ [See range() above]