]> granicus.if.org Git - python/commitdiff
#2985: allow i8 in XMLRPC responses.
authorGeorg Brandl <georg@python.org>
Thu, 29 May 2008 07:45:26 +0000 (07:45 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 29 May 2008 07:45:26 +0000 (07:45 +0000)
Lib/xmlrpclib.py
Misc/NEWS

index d635a4e011386c8cdfeada27d247c86288acd3f0..f600de7f245ea47151c8a71d029fe9b7cef9621b 100644 (file)
@@ -897,6 +897,7 @@ class Unmarshaller:
         self.append(int(data))
         self._value = 0
     dispatch["i4"] = end_int
+    dispatch["i8"] = end_int
     dispatch["int"] = end_int
 
     def end_double(self, data):
index b3202b8d34b09c0633ae77edaacc85e2e490b32c..28388872173fd53ed9ff19806cb10b5466232d15 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,8 +63,11 @@ Extension Modules
 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.