[Python-checkins] r63665 - in python/trunk/Doc/library: docxmlrpcserver.rst simplexmlrpcserver.rst xmlrpclib.rst

georg.brandl python-checkins at python.org
Mon May 26 12:47:44 CEST 2008


Author: georg.brandl
Date: Mon May 26 12:47:43 2008
New Revision: 63665

Log:
Add renaming notices to xmlrpc modules.


Modified:
   python/trunk/Doc/library/docxmlrpcserver.rst
   python/trunk/Doc/library/simplexmlrpcserver.rst
   python/trunk/Doc/library/xmlrpclib.rst

Modified: python/trunk/Doc/library/docxmlrpcserver.rst
==============================================================================
--- python/trunk/Doc/library/docxmlrpcserver.rst	(original)
+++ python/trunk/Doc/library/docxmlrpcserver.rst	Mon May 26 12:47:43 2008
@@ -1,4 +1,3 @@
-
 :mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server
 ==========================================================
 
@@ -7,6 +6,11 @@
 .. moduleauthor:: Brian Quinlan <brianq at activestate.com>
 .. sectionauthor:: Brian Quinlan <brianq at activestate.com>
 
+.. note::
+   The :mod:`DocXMLRPCServer` module has been merged into :mod:`xmlrpc.server`
+   in Python 3.0.  The :term:`2to3` tool will automatically adapt imports when
+   converting your sources to 3.0.
+
 
 .. versionadded:: 2.3
 

Modified: python/trunk/Doc/library/simplexmlrpcserver.rst
==============================================================================
--- python/trunk/Doc/library/simplexmlrpcserver.rst	(original)
+++ python/trunk/Doc/library/simplexmlrpcserver.rst	Mon May 26 12:47:43 2008
@@ -1,4 +1,3 @@
-
 :mod:`SimpleXMLRPCServer` --- Basic XML-RPC server
 ==================================================
 
@@ -7,6 +6,11 @@
 .. moduleauthor:: Brian Quinlan <brianq at activestate.com>
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake at acm.org>
 
+.. note::
+   The :mod:`SimpleXMLRPCServer` module has been merged into
+   :mod:`xmlrpc.server` in Python 3.0.  The :term:`2to3` tool will automatically
+   adapt imports when converting your sources to 3.0.
+
 
 .. versionadded:: 2.2
 

Modified: python/trunk/Doc/library/xmlrpclib.rst
==============================================================================
--- python/trunk/Doc/library/xmlrpclib.rst	(original)
+++ python/trunk/Doc/library/xmlrpclib.rst	Mon May 26 12:47:43 2008
@@ -6,6 +6,11 @@
 .. moduleauthor:: Fredrik Lundh <fredrik at pythonware.com>
 .. sectionauthor:: Eric S. Raymond <esr at snark.thyrsus.com>
 
+.. note::
+   The :mod:`xmlrpclib` module has been renamed to :mod:`xmlrpc.client` in
+   Python 3.0.  The :term:`2to3` tool will automatically adapt imports when
+   converting your sources to 3.0.
+
 
 .. XXX Not everything is documented yet.  It might be good to describe
    Marshaller, Unmarshaller, getparser, dumps, loads, and Transport.


More information about the Python-checkins mailing list