- 6baa0f9 Fixes cast warning in bufferedio.c by Steve Dower · 9 years ago
- d10d6ae Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
- dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 10 years ago
- f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 10 years ago
- cb46f0e Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 10 years ago
- 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 10 years ago
- 8be6be4 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 10 years ago
- 7665be6 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 10 years ago
- 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 10 years ago
- 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 10 years ago
- 98beb75 merge 3.4 (#23093) by Benjamin Peterson · 10 years ago
- 10e76b6 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 10 years ago
- 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
- e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
- 58ee2d3 merge 3.4 (#22517) by Benjamin Peterson · 10 years ago
- c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
- bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
- a96fea0 add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 10 years ago
- 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
- 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
- 5bdfc51 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 11 years ago
- 61e2493 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 11 years ago
- 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
- 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
- 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
- ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 11 years ago
- 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
- 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
- 37a79a1 Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 11 years ago
- 281945f Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 11 years ago
- d7c59e1 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
- 9f10f56 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
- 67bfe80 #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
- 4c05969 merge 3.3 (#16597) by Benjamin Peterson · 12 years ago
- 6862361 call close on the underlying stream even if flush raises (closes #16597) by Benjamin Peterson · 12 years ago
- dc46945 Closes #15488: Closed files keep their buffer alive by Jesus Cea · 12 years ago
- 8f734eb 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 by Christian Heimes · 12 years ago
- a264384 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
- 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
- 109d573 Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair. by Florent Xicluna · 12 years ago
- 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- 9436361 Closes #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 12 years ago
- 990eff0 Backing out 86dc014cdd74. Not ready yet by Jesus Cea · 13 years ago
- 2b47f0a Close #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 13 years ago
- 7fe601c Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
- 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
- 56a220a Issue #13393: BufferedReader.read1() now asks the full requested size to by Antoine Pitrou · 13 years ago
- 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
- 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
- b619bb2 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
- bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
- e8bb1a0 Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 13 years ago
- e05565e Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 13 years ago
- bc93a11 Close #12229: Remove an unused argument of _bufferedreader_peek_unlocked(), by Victor Stinner · 13 years ago
- b57f108 Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available. by Victor Stinner · 13 years ago
- b89b31a Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
- 00dd182 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
- 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
- 4e19e11 Fix compile error under Windows by Antoine Pitrou · 13 years ago
- 3486a98 Issue #9971: Write an optimized implementation of BufferedReader.readinto(). by Antoine Pitrou · 13 years ago
- d843c2d Merged revisions 88610 via svnmerge from by Antoine Pitrou · 14 years ago
- 707ce82 Issue #10956: Buffered I/O classes retry reading or writing after a signal by Antoine Pitrou · 14 years ago
- 6cfc512 Merged revisions 87427 via svnmerge from by Antoine Pitrou · 14 years ago
- 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 14 years ago
- 976157f Merged revisions 86981,86984 via svnmerge from by Antoine Pitrou · 14 years ago
- f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 14 years ago
- bee3316 Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. by Matthias Klose · 14 years ago
- 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
- e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
- 16b11de Merged revisions 84239 via svnmerge from by Antoine Pitrou · 14 years ago
- b46b9d5 Issue #9617: Signals received during a low-level write operation aren't by Antoine Pitrou · 14 years ago
- 00091ca Merged revisions 83944 via svnmerge from by Antoine Pitrou · 14 years ago
- 32cfede Issue #9550: a BufferedReader could issue an additional read when the by Antoine Pitrou · 14 years ago
- f6df1ee Merged revisions 83411 via svnmerge from by Antoine Pitrou · 14 years ago
- c881f15 Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when by Antoine Pitrou · 14 years ago
- faf9007 Merged revisions 80722 via svnmerge from by Antoine Pitrou · 15 years ago
- 6be8876 Merged revisions 80720 via svnmerge from by Antoine Pitrou · 15 years ago
- 6b59f77 Merged revisions 76806,76808 via svnmerge from by Benjamin Peterson · 15 years ago
- bf5ff76 Merged revisions 76805 via svnmerge from by Benjamin Peterson · 15 years ago
- 1a0aaaa Merged revisions 76502 via svnmerge from by Mark Dickinson · 15 years ago
- 5800b27 Merged revisions 76007 via svnmerge from by Antoine Pitrou · 15 years ago
- 00de1bd Merged revisions 75941 via svnmerge from by Mark Dickinson · 15 years ago
- cb9285c Merged revisions 75939 via svnmerge from by Mark Dickinson · 15 years ago
- 121fbe4 Merged revisions 75881 via svnmerge from by Mark Dickinson · 15 years ago
- d430ebe Merged revisions 75879 via svnmerge from by Mark Dickinson · 15 years ago
- 6576848 Merged revisions 75729 via svnmerge from by Mark Dickinson · 15 years ago
- 238b109 Merged revisions 75728 via svnmerge from by Mark Dickinson · 15 years ago
- e1b60d4 Merged revisions 75258 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
- 0473e56 Merged revisions 74338 via svnmerge from by Antoine Pitrou · 15 years ago
- a0ceb73 Merged revisions 74336 via svnmerge from by Antoine Pitrou · 15 years ago
- 680bf1a move to a naming scheme with all lowercase and underscores by Benjamin Peterson · 15 years ago
- 716c444 Issue #5761: Add the name of the underlying file to the repr() of various IO objects. by Antoine Pitrou · 15 years ago
- d2e0c79 implement a detach() method for BufferedIOBase and TextIOBase #5883 by Benjamin Peterson · 16 years ago
- 1fea321 use NULL for the ends of tables by Benjamin Peterson · 16 years ago
- cf4c749 Issue #5734: BufferedRWPair was poorly tested and had several glaring bugs. by Antoine Pitrou · 16 years ago