summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-26 10:47:43 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-26 10:47:43 (GMT)
commite2caef76466b694467984e71207d0076a3639263 (patch)
tree8785da44cb8e57c762ca6620e6e7360d3ca6daee
parent68d3eb9f66d33723ce137ed3872e6c47633a4145 (diff)
downloadcpython-e2caef76466b694467984e71207d0076a3639263.zip
cpython-e2caef76466b694467984e71207d0076a3639263.tar.gz
cpython-e2caef76466b694467984e71207d0076a3639263.tar.bz2
Add renaming notices to xmlrpc modules.
-rw-r--r--Doc/library/docxmlrpcserver.rst6
-rw-r--r--Doc/library/simplexmlrpcserver.rst6
-rw-r--r--Doc/library/xmlrpclib.rst5
3 files changed, 15 insertions, 2 deletions
diff --git a/Doc/library/docxmlrpcserver.rst b/Doc/library/docxmlrpcserver.rst
index 958ea95..67cb3b9 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 <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
diff --git a/Doc/library/simplexmlrpcserver.rst b/Doc/library/simplexmlrpcserver.rst
index c788d55..e77ac77 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 <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
diff --git a/Doc/library/xmlrpclib.rst b/Doc/library/xmlrpclib.rst
index 51d97a2..84f662c 100644
--- a/Doc/library/xmlrpclib.rst
+++ b/Doc/library/xmlrpclib.rst
@@ -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.