diff options
author | Guido van Rossum <guido@python.org> | 2001-07-12 11:54:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-07-12 11:54:37 (GMT) |
commit | c7e4aca56cda93e8cbb08db5c30127fb00b0e918 (patch) | |
tree | 76e48538b8fb2a9277e2611e98403cc74412a045 /Misc | |
parent | bf5a774bcb0a9cdac2c0671819c0165d2a00afbb (diff) | |
download | cpython-c7e4aca56cda93e8cbb08db5c30127fb00b0e918.zip cpython-c7e4aca56cda93e8cbb08db5c30127fb00b0e918.tar.gz cpython-c7e4aca56cda93e8cbb08db5c30127fb00b0e918.tar.bz2 |
Add xmlrpc.
(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.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |