[Python-checkins] r63478 - peps/trunk/pep-0361.txt

neal.norwitz python-checkins at python.org
Tue May 20 06:33:08 CEST 2008


Author: neal.norwitz
Date: Tue May 20 06:33:08 2008
New Revision: 63478

Log:
Move PEPs that have been implemented (plus other features) to the right place.

Modified:
   peps/trunk/pep-0361.txt

Modified: peps/trunk/pep-0361.txt
==============================================================================
--- peps/trunk/pep-0361.txt	(original)
+++ peps/trunk/pep-0361.txt	Tue May 20 06:33:08 2008
@@ -74,10 +74,10 @@
         - 352: Raising a string exception now triggers a TypeError.
              Attempting to catch a string exception raises DeprecationWarning.
              BaseException.message has been deprecated. [#pep352]
-
+        - 358: The "bytes" Object [#pep358]
         - 370: Per user site-packages directory [#pep370]
-
-        - 358:  The "bytes" Object [#pep358]
+        - 3112: Bytes literals in Python 3000 [#pep3112]
+        - 3127: Integer Literal Support and Syntax [#pep3127]
 
     New modules in the standard library:
 
@@ -115,6 +115,8 @@
       - with/as will be keywords
       - a __dir__() special method to control dir() was added [1]
       - AtheOS support stopped.
+      - warnings module implemented in C
+      - compile() takes an AST and can convert to byte code
 
 
 Possible features for 2.6
@@ -127,8 +129,6 @@
 
         - PEP 297:  Support for System Upgrades [#pep297]
         - PEP 367:  New Super [#pep367]
-        - PEP 3112:  Bytes literals in Python 3000 [#pep3112]
-        - PEP 3127:  Integer Literal Support and Syntax [#pep3127]
 
     Each non-trivial feature listed here that is not a PEP must be 
     discussed on python-dev.  Other enhancements include:
@@ -160,8 +160,7 @@
         - multifile
         - compiler package (or a Py3K warning instead?)
 
-    - warnings module implemented in C
-      * Convert Parser/*.c to use warnings module rather than printf
+    - Convert Parser/*.c to use the C warnings module rather than printf
 
     - Add warnings for Py3k features removed:
       * backticks and <>


More information about the Python-checkins mailing list