]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add renaming notices to xmlrpc modules.
authorGeorg Brandl <georg@python.org>
Mon, 26 May 2008 10:47:43 +0000 (10:47 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 26 May 2008 10:47:43 +0000 (10:47 +0000)
Doc/library/docxmlrpcserver.rst
Doc/library/simplexmlrpcserver.rst
Doc/library/xmlrpclib.rst

index 958ea9585424077f83720fadfdf4a85068969cb3..67cb3b9c5ffefe513573809149d05e1c1a7bc827 100644 (file)
@@ -1,4 +1,3 @@
-
 :mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server
 ==========================================================
 
@@ -7,6 +6,11 @@
 .. moduleauthor:: Brian Quinlan <brianq@activestate.com>
 .. sectionauthor:: Brian Quinlan <brianq@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
 
index c788d55d571199c88e1ac285837d28d2c7cecb90..e77ac779ad2b7f97f8393ab990b2946573beff79 100644 (file)
@@ -1,4 +1,3 @@
-
 :mod:`SimpleXMLRPCServer` --- Basic XML-RPC server
 ==================================================
 
@@ -7,6 +6,11 @@
 .. moduleauthor:: Brian Quinlan <brianq@activestate.com>
 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@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
 
index 51d97a23fa33ceeeb1b839eb3723265bfe792837..84f662cd04dc274a99b1002d4442d0160e1b0d81 100644 (file)
@@ -6,6 +6,11 @@
 .. moduleauthor:: Fredrik Lundh <fredrik@pythonware.com>
 .. sectionauthor:: Eric S. Raymond <esr@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.