Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add multicall support to xmlrpclib #36281

Closed
brianquinlan opened this issue Mar 18, 2002 · 4 comments
Closed

Add multicall support to xmlrpclib #36281

brianquinlan opened this issue Mar 18, 2002 · 4 comments
Assignees
Labels
stdlib Python modules in the Lib dir

Comments

@brianquinlan
Copy link
Contributor

BPO 531629
Nosy @loewis, @brianquinlan
Files
  • xmlrpclib.diff: Patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = 'https://github.com/loewis'
    closed_at = <Date 2004-08-16.05:24:20.000>
    created_at = <Date 2002-03-18.23:00:32.000>
    labels = ['library']
    title = 'Add multicall support to xmlrpclib'
    updated_at = <Date 2004-08-16.05:24:20.000>
    user = 'https://github.com/brianquinlan'

    bugs.python.org fields:

    activity = <Date 2004-08-16.05:24:20.000>
    actor = 'loewis'
    assignee = 'loewis'
    closed = True
    closed_date = None
    closer = None
    components = ['Library (Lib)']
    creation = <Date 2002-03-18.23:00:32.000>
    creator = 'bquinlan'
    dependencies = []
    files = ['4063']
    hgrepos = []
    issue_num = 531629
    keywords = ['patch']
    message_count = 4.0
    messages = ['39263', '39264', '39265', '39266']
    nosy_count = 3.0
    nosy_names = ['loewis', 'anthonybaxter', 'bquinlan']
    pr_nums = []
    priority = 'normal'
    resolution = 'accepted'
    stage = None
    status = 'closed'
    superseder = None
    type = None
    url = 'https://bugs.python.org/issue531629'
    versions = []

    @brianquinlan
    Copy link
    Contributor Author

    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

    @brianquinlan brianquinlan added the stdlib Python modules in the Lib dir label Mar 18, 2002
    @brianquinlan brianquinlan added the stdlib Python modules in the Lib dir label Mar 18, 2002
    @loewis
    Copy link
    Mannequin

    loewis mannequin commented Oct 31, 2003

    Logged In: YES
    user_id=21627

    Thanks for the patch. Applied as

    libxmlrpclib.tex 1.15
    xmlrpclib.py 1.31
    NEWS 1.883

    @anthonybaxter
    Copy link
    Mannequin

    anthonybaxter mannequin commented Aug 16, 2004

    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 :-/

    @loewis
    Copy link
    Mannequin

    loewis mannequin commented Aug 16, 2004

    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.

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 9, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    stdlib Python modules in the Lib dir
    Projects
    None yet
    Development

    No branches or pull requests

    1 participant