[issue2985] xmlrpclib doesn't support 64bit integer replies
New submission from Riku Lindblad <[EMAIL PROTECTED]>: When querying a XML-RPC server that returns a 64 bit integer, the python interface always returns an empty tuple. When running with verbose=True the response is still intact, the library just can't parse the result between the tags. Example response: body: '\r\n\r\n\r\n1157\r\n\r\n\r\n' -- components: Library (Lib) messages: 67426 nosy: shrike severity: normal status: open title: xmlrpclib doesn't support 64bit integer replies versions: Python 2.5 __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2985> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue2985] xmlrpclib doesn't support 64bit integer replies
Riku Lindblad <[EMAIL PROTECTED]> added the comment: I attached a patch that seems to fix the problem, needs proper testing though. -- keywords: +patch Added file: http://bugs.python.org/file10450/xmlrpclib-64bitsupport.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2985> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue2985] xmlrpclib doesn't support 64bit integer replies
Riku Lindblad <[EMAIL PROTECTED]> added the comment: I ran into 64bit integer responses with rtorrent's XML-RPC API. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2985> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue2985] xmlrpclib doesn't support 64bit integer replies
Riku Lindblad <[EMAIL PROTECTED]> added the comment: The I8 tag is an extension by xmlrpc-c: http://xmlrpc-c.sourceforge.net/doc/libxmlrpc.html#extensiontype (XMLRPC_TYPE_I8) ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2985> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com