Mark intern() move as done.

This commit is contained in:
Georg Brandl 2006-12-19 20:51:35 +00:00
parent 90f8562b42
commit 1fc84c29cd
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ To be removed:
* ``coerce()``: no longer needed [2]_
* ``execfile()``, ``reload()``: use ``exec()`` [2]_
* ``input()``: use ``eval(sys.stdin.readline())`` [2]_ [done]
* ``intern()``, ``id()``: put in ``sys`` (?) [2]_, [22]_
* ``intern()``: put in ``sys`` [2]_, [22]_ [done]
* ``map()``, ``filter()``: use list comprehensions instead??? [1]_, [9]_
(Actually these can stay.)
* ``reduce()``: write a loop instead [2]_, [9]_ [done]