From: Georg Brandl Date: Thu, 29 May 2008 07:45:26 +0000 (+0000) Subject: #2985: allow i8 in XMLRPC responses. X-Git-Tag: v2.6b1~209 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0b592f8e8409a4987932a3c7e021e241a090a7d;p=python #2985: allow i8 in XMLRPC responses. --- diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py index d635a4e011..f600de7f24 100644 --- a/Lib/xmlrpclib.py +++ b/Lib/xmlrpclib.py @@ -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): diff --git a/Misc/NEWS b/Misc/NEWS index b3202b8d34..2838887217 100644 --- 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 (````) 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.