[Python-checkins] r43652 - peps/trunk/pep-0356.txt

neal.norwitz python-checkins at python.org
Tue Apr 4 21:31:30 CEST 2006


Author: neal.norwitz
Date: Tue Apr  4 21:31:29 2006
New Revision: 43652

Modified:
   peps/trunk/pep-0356.txt
Log:
a1 looks destined for the 5th somewhere in the world, update details about AST issues

Modified: peps/trunk/pep-0356.txt
==============================================================================
--- peps/trunk/pep-0356.txt	(original)
+++ peps/trunk/pep-0356.txt	Tue Apr  4 21:31:29 2006
@@ -39,7 +39,7 @@
     betas and release candidates will be determined as the release process
     unfolds.
 
-    alpha 1: March 30, 2006 [planned]
+    alpha 1: April 5, 2006 [planned]
     alpha 2: April 29, 2006 [planned]
     alpha 3: May 27, 2006 [planned]
     beta 1:  June 24, 2006 [planned]
@@ -92,7 +92,7 @@
     - pysqlite was added to the standard library
 
 
-Planned features for 2.5
+Possible features for 2.5
 
     Each feature below should implemented prior to beta1 or
     will require BDFL approval for inclusion in 2.5.
@@ -150,10 +150,19 @@
 
     - AST compiler problems
       (Owner: Jeremy Hylton)
+       * eval(str(-sys.maxint - 1)) should produce an int, not long.
+         when a constant it should not be stored in co_consts
 
-    - test_trace tests that were commented out for AST must be fixed
-      (Owner: Jeremy Hylton)
-      http://python.org/sf/1191458
+       * string constants that are not assigned are in byte code
+            def foo():
+                "docstring" 
+                "not a docstring" 
+         the constant (not a docstring) should not be stored in co_consts
+
+       * test_trace tests that were commented out for AST must be fixed
+         only test_05_no_pop_tops remains outstanding
+         (Owner: Jeremy Hylton)
+         http://python.org/sf/1191458
 
     - xmlplus/xmlcore situation wrt ElementTree needs resolution
       (Owners: Fred Drake/Martin von Loewis/Fredrik Lundh)
@@ -164,6 +173,7 @@
       and "sv" (listed as obsolete hardware specific).
 
     - StopIteration should propagate from context managers (with statement)
+      Is this done?  Jim Jewett had a question on python-checkins
       (Owner: Phillip Eby)
 
 


More information about the Python-checkins mailing list