From: Georg Brandl Date: Mon, 26 May 2008 10:47:43 +0000 (+0000) Subject: Add renaming notices to xmlrpc modules. X-Git-Tag: v2.6b1~249 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e2caef76466b694467984e71207d0076a3639263;p=thirdparty%2FPython%2Fcpython.git Add renaming notices to xmlrpc modules. --- diff --git a/Doc/library/docxmlrpcserver.rst b/Doc/library/docxmlrpcserver.rst index 958ea9585424..67cb3b9c5ffe 100644 --- a/Doc/library/docxmlrpcserver.rst +++ b/Doc/library/docxmlrpcserver.rst @@ -1,4 +1,3 @@ - :mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server ========================================================== @@ -7,6 +6,11 @@ .. moduleauthor:: Brian Quinlan .. sectionauthor:: Brian Quinlan +.. 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 diff --git a/Doc/library/simplexmlrpcserver.rst b/Doc/library/simplexmlrpcserver.rst index c788d55d5711..e77ac779ad2b 100644 --- a/Doc/library/simplexmlrpcserver.rst +++ b/Doc/library/simplexmlrpcserver.rst @@ -1,4 +1,3 @@ - :mod:`SimpleXMLRPCServer` --- Basic XML-RPC server ================================================== @@ -7,6 +6,11 @@ .. moduleauthor:: Brian Quinlan .. sectionauthor:: Fred L. Drake, Jr. +.. 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 diff --git a/Doc/library/xmlrpclib.rst b/Doc/library/xmlrpclib.rst index 51d97a23fa33..84f662cd04dc 100644 --- a/Doc/library/xmlrpclib.rst +++ b/Doc/library/xmlrpclib.rst @@ -6,6 +6,11 @@ .. moduleauthor:: Fredrik Lundh .. sectionauthor:: Eric S. Raymond +.. 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.