[Python-checkins] r63123 - peps/trunk/pep-3108.txt

brett.cannon python-checkins at python.org
Mon May 12 02:54:41 CEST 2008


Author: brett.cannon
Date: Mon May 12 02:54:41 2008
New Revision: 63123

Log:
Doc what needs to be done to get rid of the User* modules.


Modified:
   peps/trunk/pep-3108.txt

Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Mon May 12 02:54:41 2008
@@ -628,12 +628,14 @@
   + Functionality unique to urllib will be kept in the
     `urllib package`_.
 
-* UserDict [done: 3.0]
+* UserDict [done: 3.0] (For 2.6, backport from ``collections`` and change
+                        usage to ``collections.UserDict``)
 
   + Not as useful since types can be a superclass.
   + Useful bits moved to the 'collections' module.
 
-* UserList/UserString [done: 3.0]
+* UserList/UserString [done: 3.0] (For 2.6, backport from ``collections`` and
+                                    and change usage)
 
   + Not useful since types can be a superclass.
   + Moved to the 'collections' module.


More information about the Python-checkins mailing list