- 49d3db9 Issue #25717: Add comment explaining why errors are ignored by Martin Panter · 9 years ago
- 0bb62b1 Issue #25717: Tolerate fstat() failures in the FileIO constructor by Martin Panter · 9 years ago
- dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
- 7e9d1d1 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 10 years ago
- 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 10 years ago
- 82adeff Fix typo in assert statement by Christian Heimes · 10 years ago
- f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 10 years ago
- a1c7e72 Issue #23668: Suppresses invalid parameter handler around chsize calls. by Steve Dower · 10 years ago
- 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 10 years ago
- 3d2279f Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 10 years ago
- fe0a41a Issue #23668: Adds support for os.truncate and os.ftruncate on Windows by Steve Dower · 10 years ago
- cd092ef Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 10 years ago
- 5056769 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 10 years ago
- b817b77 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 10 years ago
- e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 10 years ago
- 520bddf Issue #23752: When built from an existing file descriptor, io.FileIO() now only by Victor Stinner · 10 years ago
- f329878 Issue #23753: Python doesn't support anymore platforms without stat() or by Victor Stinner · 10 years ago
- 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 10 years ago
- 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 10 years ago
- d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 10 years ago
- 9672da7 Issue #23285: Fix handling of EINTR in fileio.c by Victor Stinner · 10 years ago
- f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 10 years ago
- 254dd59 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 10 years ago
- a3712a9 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 10 years ago
- 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 10 years ago
- 4954f9f Issue #17401: Output the closefd attribute as boolean. by Serhiy Storchaka · 10 years ago
- 933430a Issue #17401: document closefd in io.FileIO docs and add to repr by Robert Collins · 10 years ago
- 43705d7 Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
- b87630c Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
- d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
- 6680e9f (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errors by Victor Stinner · 10 years ago
- e10920f Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
- de68722 Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohuslav Kabrda. by Antoine Pitrou · 10 years ago
- 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
- d9d0419 Issue #19512: fileio_init() reuses PyId_name identifier instead of "name" by Victor Stinner · 11 years ago
- e619427 Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. by Antoine Pitrou · 11 years ago
- e93b63b Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. by Antoine Pitrou · 11 years ago
- daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
- 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
- 85c761d Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure by Victor Stinner · 11 years ago
- 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
- 9975877 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
- 91e8b81 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
- 3e26939 FileIO.readall(): remove trailing space from an exception message by Victor Stinner · 11 years ago
- af7260e Issue #15758: Fix FileIO.readall() so it no longer has O(n**2) complexity. by Richard Oudkerk · 11 years ago
- 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
- fd53a5a (Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. by Victor Stinner · 12 years ago
- 6f84659 (Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. by Victor Stinner · 12 years ago
- c44057d Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB by Victor Stinner · 12 years ago
- 292c835 Issue #15478: Raising an OSError doesn't decode or encode the filename anymore by Victor Stinner · 12 years ago
- 7d7f40c Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
- 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 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
- 7f59fd7 Simplify code in fileio_init by Hynek Schlawack · 12 years ago
- 6916835 #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
- 9ed8b4e #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
- 9866d96 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
- 2cc7156 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
- a3f4457 Speed up reading of small files. This avoids multiple C read() calls on pyc files. by Antoine Pitrou · 13 years ago
- 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
- 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
- d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
- dc3044c Issue #12760: Add a create mode to open(). Patch by David Townshend. by Charles-François Natali · 13 years ago
- ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
- 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
- 59142db Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). by Ross Lagerwall · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- 72d6a13 Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
- d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
- c5af773 Fix FileIO.readall() (new_buffersize()) for large files by Victor Stinner · 13 years ago
- a2a6477 Fix io.FileIO.readall() on Windows 64 bits by Victor Stinner · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
- d9fc85d (merge 3.2) Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
- c655a72 Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
- e9d44ccb Issue #12175: FileIO.readall() now only reads the file position and size once. by Victor Stinner · 13 years ago
- 4767114 (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 13 years ago
- b79f28c Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 13 years ago
- e0daff1 Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on by Victor Stinner · 14 years ago
- 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 14 years ago
- 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 14 years ago
- e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 14 years ago
- d62ecbf Merged revisions 85728,85731,85735,85766-85771,85773,85777 via svnmerge from by Georg Brandl · 14 years ago
- 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
- 735e3b1 Merged revisions 85982 via svnmerge from by Antoine Pitrou · 14 years ago
- bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
- 430d469 fix style by Benjamin Peterson · 14 years ago
- 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
- e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
- 28928ae #4829: better error message for invalid file mode by Georg Brandl · 14 years ago
- 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
- ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
- f7ec1fd Merged revisions 80798 via svnmerge from by Antoine Pitrou · 14 years ago
- ae4b472 Merged revisions 80796 via svnmerge from by Antoine Pitrou · 14 years ago
- 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 15 years ago
- 66f9fea Merged revisions 77895-77896 via svnmerge from by Antoine Pitrou · 15 years ago