This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients gvanrossum, vstinner, yselivanov
Date 2016-12-09.13:44:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481291057.67.0.68624507486.issue28920@psf.upfronthosting.co.za>
In-reply-to
Content
The issue was in fixed in Python 3.7 with a change made for optimization, not directly to fix this issue:

changeset:   105547:b29c719d5992
tag:         tip
user:        Victor Stinner <victor.stinner@gmail.com>
date:        Fri Dec 09 14:24:02 2016 +0100
files:       Modules/_asynciomodule.c
description:
Use _PyObject_CallMethodIdObjArgs() in _asyncio

Issue #28915: Replace _PyObject_CallMethodId() with
_PyObject_CallMethodIdObjArgs() when the format string was only made of "O"
formats, PyObject* arguments.

_PyObject_CallMethodIdObjArgs() avoids the creation of a temporary tuple and
doesn't have to parse a format string.
History
Date User Action Args
2016-12-09 13:44:17vstinnersetrecipients: + vstinner, gvanrossum, yselivanov
2016-12-09 13:44:17vstinnersetmessageid: <1481291057.67.0.68624507486.issue28920@psf.upfronthosting.co.za>
2016-12-09 13:44:17vstinnerlinkissue28920 messages
2016-12-09 13:44:17vstinnercreate