244 Commits (c61b9130786229aea79dbe2b19b46db020b0632b)

Author SHA1 Message Date
Andrew Kuchling c7b6c50f29 Describe 'surrogateescape' in the documentation. 13 years ago
Serhiy Storchaka 37a79a12d1 Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw 13 years ago
Victor Stinner 3e269397e3 FileIO.readall(): remove trailing space from an exception message 13 years ago
Richard Oudkerk af7260e81a Issue #15758: Fix FileIO.readall() so it no longer has O(n**2) complexity. 13 years ago
Terry Jan Reedy 0158af38b7 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, 13 years ago
Terry Jan Reedy ce9cc49104 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, 13 years ago
R David Murray 5b2cf5e651 #17275: Fix class name in init errors in C bufferedio classes. 13 years ago
R David Murray 67bfe80758 #17275: Fix class name in init errors in C bufferedio classes. 13 years ago
Serhiy Storchaka 354d50ee37 Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying 14 years ago
Serhiy Storchaka 94dc6736bd Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying 14 years ago
Gregory P. Smith b9817b01ed Additional fix for Issue #12268: The io module file object writelines() methods no longer abort early when one of its write system calls is interrupted (EINTR). 14 years ago
Gregory P. Smith a998ad0135 Additional fix for Issue #12268: The io module file object writelines() methods 14 years ago
Serhiy Storchaka 74f49ab28b Issue #15989: Fix several occurrences of integer overflow 14 years ago
Serhiy Storchaka 441d30fac7 Issue #15989: Fix several occurrences of integer overflow 14 years ago
Serhiy Storchaka 7898043868 Issue #15989: Fix several occurrences of integer overflow 14 years ago
Victor Stinner c44057dfbd Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB 14 years ago
Victor Stinner 23a32ba0e5 Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB 14 years ago
Benjamin Peterson a2d6d7121e call close on the underlying stream even if flush raises (#16597) 14 years ago
Benjamin Peterson 68623614f0 call close on the underlying stream even if flush raises (closes #16597) 14 years ago
Andrew Svetlov 4bb142b1b7 Issue #16714: use 'raise' exceptions, don't 'throw'. 14 years ago
Andrew Svetlov 737fb89dd1 Issue #16714: use 'raise' exceptions, don't 'throw'. 14 years ago
Victor Stinner 292c835548 Issue #15478: Raising an OSError doesn't decode or encode the filename anymore 14 years ago
Christian Heimes 743e0cd6b5 Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified 14 years ago
Gregory P. Smith 99716166b1 Fixes Issue #12268 for the io module - File readline, readlines and 14 years ago
Jesus Cea dc469454ec Closes #15488: Closed files keep their buffer alive 14 years ago
Ezio Melotti 16d2b47837 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. 14 years ago
Ezio Melotti ba372a59d1 #15796: Fix \n in readline docstring. 14 years ago
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 14 years ago
Christian Heimes f47d79fec1 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 14 years ago
Christian Heimes 19606411d3 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 14 years ago
Christian Heimes 89ff3c7f20 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 14 years ago
Stefan Krah 96efdd422c Issue #15868: Fix refleak in bytesio.c (Coverity #715365). 14 years ago
Antoine Pitrou c5eec0e387 Issue #15841: The readable(), writable() and seekable() methods of io.BytesIO 14 years ago
Antoine Pitrou 1d857453b7 Issue #15841: The readable(), writable() and seekable() methods of BytesIO 14 years ago
Antoine Pitrou 6f430e4963 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. 14 years ago
Antoine Pitrou c5bef75c77 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. 14 years ago
Victor Stinner 401e17d0f0 open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't 14 years ago
Antoine Pitrou 76370f4977 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). 14 years ago
Antoine Pitrou 0c1c0d42dc Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). 14 years ago
Antoine Pitrou 8f328d0c1d Issue #15489: Add a __sizeof__ implementation for BytesIO objects. 14 years ago
Antoine Pitrou baee34c344 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. 14 years ago
Antoine Pitrou 10f0c50a0b Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. 14 years ago
Antoine Pitrou bff5df0d1c Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. 14 years ago
Florent Xicluna 109d57358e Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair. 14 years ago
Antoine Pitrou 9235b254dc Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. 14 years ago
Antoine Pitrou c2ec992698 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. 14 years ago
Gregory P. Smith 5135992164 Fixes issue #12268: File readline, readlines and read() or readall() methods 14 years ago
Jesus Cea 9436361e4c Closes #10142: Support for SEEK_HOLE/SEEK_DATA 14 years ago
Hynek Schlawack 7f59fd7c7c Simplify code in fileio_init 14 years ago
Hynek Schlawack 9ed8b4e4ca #10053: Don't close FDs when FileIO.__init__ fails 14 years ago