[Python-checkins] r43152 - python/branches/p3yk/Misc/NEWS

guido.van.rossum python-checkins at python.org
Mon Mar 20 05:35:06 CET 2006


Author: guido.van.rossum
Date: Mon Mar 20 05:35:06 2006
New Revision: 43152

Modified:
   python/branches/p3yk/Misc/NEWS
Log:
Some more TODO items of things I'd like to start with.
Mention the builtins that Neal killed.


Modified: python/branches/p3yk/Misc/NEWS
==============================================================================
--- python/branches/p3yk/Misc/NEWS	(original)
+++ python/branches/p3yk/Misc/NEWS	Mon Mar 20 05:35:06 2006
@@ -12,7 +12,21 @@
 TO DO
 -----
 
-- Make strings all Unicode.  (First have to introduce the bytes type.)
+- See PEP 3000.
+
+- Test merging certain changes from the 2.5 HEAD code.
+
+- Weed really old/weird stuff from the library.
+
+- Unify range() and xrange().
+
+- Revamp the dict API: keys(), values(), items() return iterators, etc.
+
+- Add the bytes type.
+
+- Rework the standard I/O library to use bytes for binary files.
+
+- Make strings all Unicode.
 
 - Get rid of classic class implementation.
 
@@ -31,6 +45,8 @@
 
 - Absolute import is the default behavior for 'import foo' etc.
 
+- input(), raw_input() and apply() are gone.
+
 Extension Modules
 -----------------
 


More information about the Python-checkins mailing list