cpython/Modules/_io
Christian Heimes 8f734ebe94 Fixed reference leak in error branch of _bufferedreader_read_all(). The variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364 2012-09-10 17:46:09 +02:00
..
_iomodule.c Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte 2012-09-10 03:50:48 +02:00
_iomodule.h Fixes issue #12268: File readline, readlines and read() or readall() methods 2012-06-24 00:23:47 -07:00
bufferedio.c Fixed reference leak in error branch of _bufferedreader_read_all(). The variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364 2012-09-10 17:46:09 +02:00
bytesio.c Issue #15489: Add a __sizeof__ implementation for BytesIO objects. 2012-07-30 00:01:44 +02:00
fileio.c Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. 2012-07-06 18:52:58 +02:00
iobase.c Fixes issue #12268: File readline, readlines and read() or readall() methods 2012-06-24 00:23:47 -07:00
stringio.c Issue #14387: Do not include accu.h from Python.h. 2012-03-22 14:42:18 +01:00
textio.c Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. 2012-08-15 23:20:39 +02:00