summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ba39289..7e0f425 100644
--- 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.