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