mirror of https://github.com/python/cpython
#2985: allow i8 in XMLRPC responses.
This commit is contained in:
parent
b77e888f41
commit
d0b592f8e8
|
@ -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):
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue