cpython/Modules/_io
Antoine Pitrou 25f85d4bd5 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted
while it is holding a lock to a buffered I/O object, and the main thread
tries to use the same I/O object (typically stdout or stderr).  A fatal
error is emitted instead.
2015-04-13 19:41:47 +02:00
..
_iomodule.c Issue #21715: Extracted shared complicated code in the _io module to new 2014-10-08 22:31:52 +03:00
_iomodule.h Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. 2013-12-21 15:51:54 +01:00
bufferedio.c Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted 2015-04-13 19:41:47 +02:00
bytesio.c Replaced "string" with "bytes object" in docstrings of binary I/O objects. 2015-04-10 02:18:44 +03:00
fileio.c Issue #21859: Corrected FileIO docstrings. 2015-04-10 16:08:43 +03:00
iobase.c #15840: make docs consistent by saying operations on closed files raise ValueError. 2014-04-15 21:11:36 -04:00
stringio.c Issue #15841: The readable(), writable() and seekable() methods of BytesIO 2012-09-05 20:13:48 +02:00
textio.c Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. 2015-03-30 09:58:41 +03:00