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

neal.norwitz python-checkins at python.org
Fri Aug 25 03:29:44 CEST 2006


Author: neal.norwitz
Date: Fri Aug 25 03:29:43 2006
New Revision: 51588

Modified:
   peps/trunk/pep-0361.txt
Log:
Add some TODOs for 2.6.  Some of these were implemented in 3k, others are likely to be done soon.

Modified: peps/trunk/pep-0361.txt
==============================================================================
--- peps/trunk/pep-0361.txt	(original)
+++ peps/trunk/pep-0361.txt	Fri Aug 25 03:29:43 2006
@@ -86,6 +86,26 @@
           http://python.org/sf/1505257
           (Owner: MAL)
 
+    - warnings module implemented in C
+
+    - Add warnings for Py3k features removed:
+      * backticks and <>
+      * __getslice__/__setslice__/__delslice__
+      * float args to PyArgs_ParseTuple
+      * float args to xrange
+      * coerce and all its friends
+      * __cmp__?
+      * other comparison changes?
+      * int division?
+      * {}.has_key()
+      * All PendingDeprecationWarnings (e.g. exceptions)
+      * using zip() result as a list
+      * input()
+      * apply()
+      * xreadlines
+
+    - with/as will be keywords
+
     - Check the various bits of code in Demo/ and Tools/ all still work,
       update or remove the ones that don't.
 


More information about the Python-checkins mailing list