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

This commit is contained in:
Brett Cannon 2008-05-12 00:54:41 +00:00
parent 5518dd5173
commit 45532ba2e5
1 changed files with 4 additions and 2 deletions

View File

@ -628,12 +628,14 @@ for what the module is meant for.
+ 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.