[issue17892] Fix the name of _PyObject_CallMethodObjIdArgs

2013-05-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8a364deb0225 by Alexandre Vassalotti in branch 'default': Closes #17892: Fix the name of _PyObject_CallMethodObjIdArgs http://hg.python.org/cpython/rev/8a364deb0225 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/

[issue17892] Fix the name of _PyObject_CallMethodObjIdArgs

2013-05-02 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: brett.cannon -> alexandre.vassalotti ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue17892] Fix the name of _PyObject_CallMethodObjIdArgs

2013-05-02 Thread Brett Cannon
Brett Cannon added the comment: It has a leading underscore for a reason; there is no backwards-compatibility guarantee as it's private to CPython internals. Refactor to your heart's content. -- ___ Python tracker

[issue17892] Fix the name of _PyObject_CallMethodObjIdArgs

2013-05-02 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue17892] Fix the name of _PyObject_CallMethodObjIdArgs

2013-05-02 Thread Alexandre Vassalotti
New submission from Alexandre Vassalotti: The changeset 2dd046be2c88 introduced _PyObject_CallMethodObjIdArgs. This API should have been named _PyObject_CallMethodIdObjArgs since it is the variant of _PyObject_CallMethodId which takes object arguments instead of building arguments from a forma