[Python-checkins] r55812 - peps/trunk/pep-3100.txt

collin.winter python-checkins at python.org
Thu Jun 7 22:21:16 CEST 2007


Author: collin.winter
Date: Thu Jun  7 22:21:11 2007
New Revision: 55812

Modified:
   peps/trunk/pep-3100.txt
Log:
Add StandardError to the kill list for Python 3.

Modified: peps/trunk/pep-3100.txt
==============================================================================
--- peps/trunk/pep-3100.txt	(original)
+++ peps/trunk/pep-3100.txt	Thu Jun  7 22:21:11 2007
@@ -190,6 +190,8 @@
 * ``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


More information about the Python-checkins mailing list