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

brett.cannon python-checkins at python.org
Mon May 12 03:32:36 CEST 2008


Author: brett.cannon
Date: Mon May 12 03:32:36 2008
New Revision: 63128

Log:
Minor updates.


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 03:32:36 2008
@@ -540,7 +540,7 @@
     (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 @@
   + 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 @@
                     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 @@
   + 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 @@
 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


More information about the Python-checkins mailing list