Minor updates.

This commit is contained in:
Brett Cannon 2008-05-12 01:32:36 +00:00
parent 3710798a7b
commit 9ae9cd4096
1 changed files with 7 additions and 7 deletions

View File

@ -540,7 +540,7 @@ for what the module is meant for.
(see http://bugs.python.org/issue210677).
+ Better to use the ``Tkinter.Canvas`` class.
* commands
* commands (move over functions to subprocess, update usage in the stdlib)
+ subprocess module replaces it [#pep-0324]_.
+ Remove getstatus(), move rest to subprocess.
@ -626,7 +626,7 @@ for what the module is meant for.
+ Guido has previously supported the deprecation
[#thread-deprecation]_.
* urllib
* urllib (creation of the ``urllib`` package probably needs to happen first)
+ Superceded by urllib2.
+ Functionality unique to urllib will be kept in the
@ -670,7 +670,7 @@ _winreg winreg (rename also because module has a public
interface and thus should not have a leading
underscore)
ConfigParser configparser
copy_reg copyreg [done; 2.6, 3.0]
copy_reg copyreg [done; 2.6 (all but docs), 3.0]
Queue queue [done: 2.6 (all but docs), 3.0]
SocketServer socketserver
================== ==================================================
@ -707,7 +707,7 @@ Issues`_ for a discussion on this.
+ Rename cProfile to _profile.
+ Semantic completeness of C implementation *not* verified.
* StringIO/cStringIO [done: 3.0]
* StringIO/cStringIO
+ Add the class to the 'io' module.
@ -842,13 +842,13 @@ the common use of the name as a variable, it has been deemed better
to keep the name ``urllib`` and instead shift existing modules around
into a new package.
================== ===============================
================== ===================================
Current Name Replacement Name
================== ===============================
================== ===================================
urllib2 urllib.request
urlparse urllib.parse
urllib urllib.parse, urllib.request [6]_
================== ===============================
================== ===================================
.. [6] The quoting-related functions from ``urllib`` will be added
to ``urllib.parse``. ``urllib.URLOpener`` and