Add StandardError to the kill list for Python 3.

This commit is contained in:
Collin Winter 2007-06-07 20:21:11 +00:00
parent 0d5db5d8c7
commit 03d35ea623
1 changed files with 2 additions and 0 deletions

View File

@ -190,6 +190,8 @@ To be removed:
* ``intern()``: put in ``sys`` [2]_, [22]_ [done]
* ``reduce()``: write a loop instead [2]_, [9]_ [done]
* ``xrange()``: use ``range()`` instead [1]_ [See range() above] [done]
* ``StandardError``: this is a relic from the original exception hierachy; subclass
``Exception`` instead.
Standard library