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

brett.cannon python-checkins at python.org
Tue Feb 5 21:13:46 CET 2008


Author: brett.cannon
Date: Tue Feb  5 21:13:45 2008
New Revision: 60606

Modified:
   peps/trunk/pep-3108.txt
Log:
Rename proposed http.tools and xmlrpc.tools to http.client and xmlrpc.client,
respectively. Both actually contain code for clients and not just a mish-mash
of tools.

Also remove the proposed http.cookies module until a decision is made on how to
handle Cookie/cookielib (cookie.server/cookie.client?).


Modified: peps/trunk/pep-3108.txt
==============================================================================
--- peps/trunk/pep-3108.txt	(original)
+++ peps/trunk/pep-3108.txt	Tue Feb  5 21:13:45 2008
@@ -496,11 +496,10 @@
 =================  ===============================
 Current Name       Replacement Name
 =================  ===============================
-httplib            http.tools
+httplib            http.client
 BaseHTTPServer     http.server [2]_
 CGIHTTPServer      http.server [2]_
 SimpleHTTPServer   http.server [2]_
-cookielib          http.cookies
 =================  ===============================
 
 .. [2] The ``http.server`` module can combine the specified modules
@@ -513,7 +512,7 @@
 ==================  ===============================
 Current Name        Replacement Name
 ==================  ===============================
-xmlrpclib           xmlrpc.tools
+xmlrpclib           xmlrpc.client
 SimpleXMLRPCServer  xmlrpc.server [3]_
 CGIXMLRPCServer     xmlrpc.server [3]_
 ==================  ===============================


More information about the Python-checkins mailing list