Issue 531629: Add multicall support to xmlrpclib (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/36281

classification

Title: Add multicall support to xmlrpclib
Type: Stage:
Components: Library (Lib) Versions:

process

Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: loewis Nosy List: anthonybaxter, bquinlan, loewis
Priority: normal Keywords: patch

Created on 2002-03-18 23:00 by bquinlan, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
xmlrpclib.diff bquinlan,2002-03-18 23:00 Patch
Messages (4)
msg39263 - (view) Author: Brian Quinlan (bquinlan) * (Python committer) Date: 2002-03-18 23:00
Adds a new object to xmlrpclib that allows the user to boxcared XML-RPC requests e.g. server_proxy = ServerProxy(...) multicall = MultiCall(server_proxy) multicall.add(2,3) multicall.get_address("Guido") add_result, address = multicall() see http://www.xmlrpc.com/discuss/msgReader$1208
msg39264 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2003-10-31 13:50
Logged In: YES user_id=21627 Thanks for the patch. Applied as libxmlrpclib.tex 1.15 xmlrpclib.py 1.31 NEWS 1.883
msg39265 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2004-08-16 04:37
Logged In: YES user_id=29957 This patch broke Python 1.5.2 compatibility, as documented in PEP 291, and at the top of the file :-/
msg39266 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-08-16 05:24
Logged In: YES user_id=21627 Do you think that 1.5.2 compatibility is still desirable? I don't think so, and would prefer to change PEP 291 instead.
History
Date User Action Args
2022-04-10 16:05:06 admin set github: 36281
2002-03-18 23:00:32 bquinlan create