Skip to content

Commit e2caef7

Browse files
committed
Add renaming notices to xmlrpc modules.
1 parent 68d3eb9 commit e2caef7

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Doc/library/docxmlrpcserver.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
:mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server
32
==========================================================
43

@@ -7,6 +6,11 @@
76
.. moduleauthor:: Brian Quinlan <[email protected]>
87
.. sectionauthor:: Brian Quinlan <[email protected]>
98

9+
.. note::
10+
The :mod:`DocXMLRPCServer` module has been merged into :mod:`xmlrpc.server`
11+
in Python 3.0. The :term:`2to3` tool will automatically adapt imports when
12+
converting your sources to 3.0.
13+
1014

1115
.. versionadded:: 2.3
1216

Doc/library/simplexmlrpcserver.rst

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
:mod:`SimpleXMLRPCServer` --- Basic XML-RPC server
32
==================================================
43

@@ -7,6 +6,11 @@
76
.. moduleauthor:: Brian Quinlan <[email protected]>
87
.. sectionauthor:: Fred L. Drake, Jr. <[email protected]>
98

9+
.. note::
10+
The :mod:`SimpleXMLRPCServer` module has been merged into
11+
:mod:`xmlrpc.server` in Python 3.0. The :term:`2to3` tool will automatically
12+
adapt imports when converting your sources to 3.0.
13+
1014

1115
.. versionadded:: 2.2
1216

Doc/library/xmlrpclib.rst

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
.. moduleauthor:: Fredrik Lundh <[email protected]>
77
.. sectionauthor:: Eric S. Raymond <[email protected]>
88

9+
.. note::
10+
The :mod:`xmlrpclib` module has been renamed to :mod:`xmlrpc.client` in
11+
Python 3.0. The :term:`2to3` tool will automatically adapt imports when
12+
converting your sources to 3.0.
13+
914

1015
.. XXX Not everything is documented yet. It might be good to describe
1116
Marshaller, Unmarshaller, getparser, dumps, loads, and Transport.

0 commit comments

Comments
 (0)