cpython/Modules/_io
Victor Stinner 61bdb0d319 Use _PyObject_CallMethodIdObjArgs() in _io
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.
2016-12-09 15:39:28 +01:00
..
clinic Issue #23214: Implement optional BufferedReader, BytesIO read1() argument 2016-10-20 23:48:14 +00:00
_iomodule.c Merge from 3.5. 2016-12-07 13:31:47 +02:00
_iomodule.h Issue #28217: Adds _testconsole module to test console input. Fixes some issues found by the tests. 2016-10-03 09:04:58 -07:00
bufferedio.c Use _PyObject_CallMethodIdObjArgs() in _io 2016-12-09 15:39:28 +01:00
bytesio.c Issue #23214: Implement optional BufferedReader, BytesIO read1() argument 2016-10-20 23:48:14 +00:00
fileio.c Use _PyObject_CallMethodIdObjArgs() in _io 2016-12-09 15:39:28 +01:00
iobase.c Use _PyObject_CallMethodIdObjArgs() in _io 2016-12-09 15:39:28 +01:00
stringio.c Added the const qualifier to char* variables that refer to readonly internal 2016-11-20 10:16:47 +02:00
textio.c Use _PyObject_CallMethodIdObjArgs() in _io 2016-12-09 15:39:28 +01:00
winconsoleio.c Use _PyObject_CallMethodIdObjArgs() in _io 2016-12-09 15:39:28 +01:00