]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add xmlrpc.
authorGuido van Rossum <guido@python.org>
Thu, 12 Jul 2001 11:54:37 +0000 (11:54 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 12 Jul 2001 11:54:37 +0000 (11:54 +0000)
(Tim & I should agree on where to add new additions: I add them at the
top, Tim adds them at the bottom.  I like the top better because folks
who occasionally check out the NEWS file will see the latest news
first.)

Misc/NEWS

index ba39289578d53b34df89f2fdb345c99a21d65fdf..7e0f425ef12cdab677021b006416d4bf5b14a8fd 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -138,6 +138,11 @@ Core
 
 Library
 
+- Fredrik Lundh's xmlrpclib is now a standard library module.  This
+  provides full client-side XML-RPC support.  In addition,
+  Demo/xmlrpc/ contains two server frameworks (one SocketServer-based,
+  one asyncore-based).  Thanks to Eric Raymond for the documentation.
+
 - The xrange() object is simplified: it no longer supports slicing,
   repetition, comparisons, efficient 'in' checking, the tolist()
   method, or the start, stop and step attributes.  See PEP 260.