Remove references to __cmp__.
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst
index 1f18810..23bb650 100644
--- a/Doc/library/xmlrpc.client.rst
+++ b/Doc/library/xmlrpc.client.rst
@@ -210,7 +210,7 @@
    Write the XML-RPC encoding of this :class:`DateTime` item to the *out* stream
    object.
 
-It also supports certain of Python's built-in operators through  :meth:`__cmp__`
+It also supports certain of Python's built-in operators through rich comparison
 and :meth:`__repr__` methods.
 
 A working example follows. The server code::
@@ -273,8 +273,8 @@
    which was the de facto standard base64 specification when the
    XML-RPC spec was written.
 
-It also supports certain of Python's built-in operators through a
-:meth:`__cmp__` method.
+It also supports certain of Python's built-in operators through :meth:`__eq__`
+and :meth:`__ne__` methods.
 
 Example usage of the binary objects.  We're going to transfer an image over
 XMLRPC::