[Python-checkins] r63782 - in python/trunk: Lib/xmlrpclib.py Misc/NEWS

georg.brandl python-checkins at python.org
Thu May 29 09:45:27 CEST 2008


Author: georg.brandl
Date: Thu May 29 09:45:26 2008
New Revision: 63782

Log:
#2985: allow i8 in XMLRPC responses.


Modified:
   python/trunk/Lib/xmlrpclib.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/xmlrpclib.py
==============================================================================
--- python/trunk/Lib/xmlrpclib.py	(original)
+++ python/trunk/Lib/xmlrpclib.py	Thu May 29 09:45:26 2008
@@ -897,6 +897,7 @@
         self.append(int(data))
         self._value = 0
     dispatch["i4"] = end_int
+    dispatch["i8"] = end_int
     dispatch["int"] = end_int
 
     def end_double(self, data):

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Thu May 29 09:45:26 2008
@@ -63,8 +63,11 @@
 Library
 -------
 
-Issue #2877 - The UserString.MutableString class has been removed in
-			  Python 3.0.
+- Issue #2985: Allow 64-bit integer responses (``<i8>``) in XMLRPC
+  transfers.
+
+- Issue #2877: The UserString.MutableString class has been removed in
+  Python 3.0.
 
 - Do not close external file objects passed to tarfile.open(mode='w:bz2')
   when the TarFile is closed.


More information about the Python-checkins mailing list