1. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  2. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  3. 6f84659 (Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. by Victor Stinner · 12 years ago
  4. c44057d Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB by Victor Stinner · 12 years ago
  5. 7d7f40c Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  6. 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  7. 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  8. 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  9. 7f59fd7 Simplify code in fileio_init by Hynek Schlawack · 12 years ago
  10. 6916835 #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  11. 9ed8b4e #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  12. 9866d96 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
  13. 2cc7156 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
  14. a3f4457 Speed up reading of small files. This avoids multiple C read() calls on pyc files. by Antoine Pitrou · 12 years ago
  15. 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  16. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  17. d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
  18. dc3044c Issue #12760: Add a create mode to open(). Patch by David Townshend. by Charles-François Natali · 13 years ago
  19. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  20. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  21. 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
  22. 59142db Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). by Ross Lagerwall · 13 years ago
  23. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  24. 72d6a13 Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  25. d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  26. c5af773 Fix FileIO.readall() (new_buffersize()) for large files by Victor Stinner · 13 years ago
  27. a2a6477 Fix io.FileIO.readall() on Windows 64 bits by Victor Stinner · 13 years ago
  28. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  29. fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
  30. d9fc85d (merge 3.2) Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
  31. c655a72 Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
  32. e9d44ccb Issue #12175: FileIO.readall() now only reads the file position and size once. by Victor Stinner · 13 years ago
  33. 4767114 (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 13 years ago
  34. b79f28c Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 13 years ago
  35. e0daff1 Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on by Victor Stinner · 14 years ago
  36. 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 14 years ago
  37. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 14 years ago
  38. e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 14 years ago
  39. d62ecbf Merged revisions 85728,85731,85735,85766-85771,85773,85777 via svnmerge from by Georg Brandl · 14 years ago
  40. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  41. 735e3b1 Merged revisions 85982 via svnmerge from by Antoine Pitrou · 14 years ago
  42. bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
  43. 430d469 fix style by Benjamin Peterson · 14 years ago
  44. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  45. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  46. 28928ae #4829: better error message for invalid file mode by Georg Brandl · 14 years ago
  47. 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
  48. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  49. f7ec1fd Merged revisions 80798 via svnmerge from by Antoine Pitrou · 14 years ago
  50. ae4b472 Merged revisions 80796 via svnmerge from by Antoine Pitrou · 14 years ago
  51. 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 15 years ago
  52. 66f9fea Merged revisions 77895-77896 via svnmerge from by Antoine Pitrou · 15 years ago
  53. 905a2ff Merged revisions 77890 via svnmerge from by Antoine Pitrou · 15 years ago
  54. 371c307 Merged revisions 77781-77782 via svnmerge from by Benjamin Peterson · 15 years ago
  55. 255058f don't accept bytes in FileIO.write #7785 by Benjamin Peterson · 15 years ago
  56. 6b59f77 Merged revisions 76806,76808 via svnmerge from by Benjamin Peterson · 15 years ago
  57. bf5ff76 Merged revisions 76805 via svnmerge from by Benjamin Peterson · 15 years ago
  58. 384c920 Merged revisions 75009 via svnmerge from by Antoine Pitrou · 15 years ago
  59. ca767bd Merged revisions 75007 via svnmerge from by Antoine Pitrou · 15 years ago
  60. 892a37a Merged revisions 73603 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  61. 680bf1a move to a naming scheme with all lowercase and underscores by Benjamin Peterson · 15 years ago
  62. 716c444 Issue #5761: Add the name of the underlying file to the repr() of various IO objects. by Antoine Pitrou · 15 years ago
  63. 8223c24 Merged revisions 72698-72699 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  64. c3583b2 Silence a compiler warning. by Raymond Hettinger · 15 years ago
  65. 43c5778 Rename utf8b error handler to surrogateescape. by Martin v. Löwis · 15 years ago
  66. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  67. 1fea321 use NULL for the ends of tables by Benjamin Peterson · 15 years ago
  68. 8d8d630 Issue 5682: Move _io module into its own subdirectory. by Alexandre Vassalotti · 16 years ago[Renamed from Modules/_fileio.c]
  69. 7d037a7 Plug another leak, and finally add a test for #1174606 (read() from /dev/zero). by Antoine Pitrou · 16 years ago
  70. 8e21fb2 Fix leak in _fileio.c (patch by Hirokazu Yamamoto) by Antoine Pitrou · 16 years ago
  71. 9041daa Restore a conditional I removed by mistake. by Antoine Pitrou · 16 years ago
  72. 66994e1 Issue #1174606: Calling read() without arguments of an unbounded file by Antoine Pitrou · 16 years ago
  73. a8abe86 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 16 years ago
  74. 8915e0e http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 16 years ago
  75. dc7c128 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 16 years ago
  76. a28fcfd Issue #5016: FileIO.seekable() could return False if the file position by Antoine Pitrou · 16 years ago
  77. 0ae29cf The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. by Antoine Pitrou · 16 years ago
  78. 9a8082f FileIO.readinto() isn't going anywhere by Benjamin Peterson · 16 years ago
  79. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 16 years ago
  80. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 16 years ago
  81. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 16 years ago
  82. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  83. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 16 years ago
  84. 4f7945f Fix typo by Antoine Pitrou · 16 years ago
  85. 7aedf11 fix compiler warning by Benjamin Peterson · 16 years ago
  86. 806d402 Merged revisions 68755 via svnmerge from by Benjamin Peterson · 16 years ago
  87. 0f22d69 Merged revisions 68134 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  88. 1efc23c Merged revisions 68016 via svnmerge from by Benjamin Peterson · 16 years ago
  89. 19288c2 Fix an issue in the tokenizer, where a file is opened by fd, but the underlying PyFileIO object wasn created with the closefd attribute true. by Kristján Valur Jónsson · 16 years ago
  90. a872de5 Fixed issue #4533: File read operation was dreadfully slow by Christian Heimes · 16 years ago
  91. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  92. ecc42a2 Fixed issue #4233. by Christian Heimes · 16 years ago
  93. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  94. df32b39 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 16 years ago
  95. 3e4f055 Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-66074,66080,66082-66083,66090-66093,66097-66099,66103,66105,66110,66118 via svnmerge from by Benjamin Peterson · 16 years ago
  96. 6e0e0e6 Merged revisions 66018 via svnmerge from by Neal Norwitz · 16 years ago
  97. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  98. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  99. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  100. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago