[issue26885] Add parsing support for more types in xmlrpc

2016-09-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue26885] Add parsing support for more types in xmlrpc

2016-09-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset ef63e1c999bd by Serhiy Storchaka in branch 'default': Issue #26885: xmlrpc now supports unmarshalling additional data types used https://hg.python.org/cpython/rev/ef63e1c999bd -- nosy: +python-dev ___

[issue26885] Add parsing support for more types in xmlrpc

2016-09-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue26885] Add parsing support for more types in xmlrpc

2016-07-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Terry. You can pass an integer in range from -2147483648 to 2147483647, and it is marshalled using the tag. But when you receive tags , , etc, they are unmarshalled to integer values, and these values can be out of range from

[issue26885] Add parsing support for more types in xmlrpc

2016-06-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: Table: I believe the format is that the second column describes Pyhton objects that can be marshalled into xml for the rpc. Sometimes a note is added about the 'return' type, which I presume is the Python object unmarshalled from xml. From this standpoint,

[issue26885] Add parsing support for more types in xmlrpc

2016-05-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Updated documentation. Terry, could you please look at the documentation. Is it good English or needed a correction? -- nosy: +terry.reedy Added file: http://bugs.python.org/file42765/xmlrpc_extensions2.patch ___

[issue26885] Add parsing support for more types in xmlrpc

2016-04-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +xmlrpclib raises when trying to convert an int to string when unicode is available ___ Python tracker

[issue26885] Add parsing support for more types in xmlrpc

2016-04-29 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Apache XML-RPC server supports additional data types (http://ws.apache.org/xmlrpc/types.html). Proposed patch adds support of parsing some of these types: "ex:nil", "ex:i1", "ex:i2", "ex:i8", "ex:biginteger", "ex:float", "ex:bigdecimal". "nil" and "i8"