[Python-checkins] r57996 - peps/trunk/pep-0352.txt

brett.cannon python-checkins at python.org
Thu Sep 6 00:54:10 CEST 2007


Author: brett.cannon
Date: Thu Sep  6 00:54:10 2007
New Revision: 57996

Modified:
   peps/trunk/pep-0352.txt
Log:
Update the PEP on what has been implemented so far.


Modified: peps/trunk/pep-0352.txt
==============================================================================
--- peps/trunk/pep-0352.txt	(original)
+++ peps/trunk/pep-0352.txt	Thu Sep  6 00:54:10 2007
@@ -221,19 +221,20 @@
 
 * Python 2.5 [done]
 
-  - all standard exceptions become new-style classes
+  - all standard exceptions become new-style classes [done]
 
-  - introduce BaseException
+  - introduce BaseException [done]
 
-  - Exception, KeyboardInterrupt, and SystemExit inherit from BaseException
+  - Exception, KeyboardInterrupt, and SystemExit inherit from
+    BaseException [done]
 
-  - deprecate raising string exceptions
+  - deprecate raising string exceptions [done]
 
-* Python 2.6
+* Python 2.6 [done]
 
   - deprecate catching string exceptions [done]
 
-  - deprecate ``message`` attribute (see `Retracted Ideas`_)
+  - deprecate ``message`` attribute (see `Retracted Ideas`_) [done]
   
 * Python 2.7
 
@@ -249,7 +250,7 @@
   
   - deprecate ``__getitem__`` (optional)
 
-* Python 3.0
+* Python 3.0 [done]
 
   - drop everything that was deprecated above:
 
@@ -257,7 +258,7 @@
 
     + all exceptions must inherit from BaseException [done]
 
-    + drop ``__getitem__``, ``message``
+    + drop ``__getitem__``, ``message`` [done]
 
 
 Retracted Ideas


More information about the Python-checkins mailing list