1. 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  2. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  3. bb5b92d Merge refleak fixes from 3.2 by Antoine Pitrou · 13 years ago
  4. fc1b6f0 Fix the _io module leaking references when a sub-interpreter is created. by Antoine Pitrou · 13 years ago
  5. d612de1 Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. by Charles-François Natali · 13 years ago
  6. dc3044c Issue #12760: Add a create mode to open(). Patch by David Townshend. by Charles-François Natali · 13 years ago
  7. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  8. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  9. f8facac Fix compiler warnings by Victor Stinner · 13 years ago
  10. 7fe601c Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  11. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  12. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  13. e532456 Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as by Antoine Pitrou · 13 years ago
  14. 56a220a Issue #13393: BufferedReader.read1() now asks the full requested size to by Antoine Pitrou · 13 years ago
  15. 5c398e8 Restore performance of special casings for utf-16 and utf-32 in TextIOWrapper by Antoine Pitrou · 13 years ago
  16. c28e2e5 In text I/O, optimize scanning for new lines with 1-byte unicode chars by Antoine Pitrou · 13 years ago
  17. c1b0bfd Fix memory leak in io.StringIO by Antoine Pitrou · 13 years ago
  18. de20b0b Issue #13149: Speed up append-only StringIO objects. by Antoine Pitrou · 13 years ago
  19. 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
  20. 59142db Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). by Ross Lagerwall · 13 years ago
  21. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  22. 72d6a13 Merge #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  23. d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  24. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  25. c5af773 Fix FileIO.readall() (new_buffersize()) for large files by Victor Stinner · 13 years ago
  26. a2a6477 Fix io.FileIO.readall() on Windows 64 bits by Victor Stinner · 13 years ago
  27. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead 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. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  30. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  31. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  32. b619bb2 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  33. e1335c7 Fix usage og PyUnicode_READY() by Victor Stinner · 13 years ago
  34. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  35. fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
  36. f7b8cb6 _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE by Victor Stinner · 13 years ago
  37. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  38. 6d8f744 merge 3.2 (#1616) by Benjamin Peterson · 13 years ago
  39. f22913b cast to getter by Benjamin Peterson · 13 years ago
  40. 9fd5374 merge 3.2 (#12878) by Benjamin Peterson · 13 years ago
  41. f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
  42. e8bb1a0 Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 13 years ago
  43. e05565e Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 13 years ago
  44. d42c1d0 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without by Antoine Pitrou · 13 years ago
  45. e96ec68 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without by Antoine Pitrou · 13 years ago
  46. 90ce72d Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError. by Antoine Pitrou · 13 years ago
  47. cb4ae81 Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError. by Antoine Pitrou · 13 years ago
  48. d9fc85d (merge 3.2) Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
  49. c655a72 Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. by Victor Stinner · 13 years ago
  50. bc93a11 Close #12229: Remove an unused argument of _bufferedreader_peek_unlocked(), by Victor Stinner · 13 years ago
  51. b57f108 Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available. by Victor Stinner · 13 years ago
  52. e9d44ccb Issue #12175: FileIO.readall() now only reads the file position and size once. by Victor Stinner · 13 years ago
  53. d2780ae (Merge 3.2) Issue #12175: RawIOBase.readall() now returns None if read() by Victor Stinner · 13 years ago
  54. 988512c (Merge 3.1) Issue #12175: RawIOBase.readall() now returns None if read() by Victor Stinner · 13 years ago
  55. a80987f Issue #12175: RawIOBase.readall() now returns None if read() returns None. by Victor Stinner · 13 years ago
  56. af62c7d (Merge 3.2) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 13 years ago
  57. 4767114 (Merge 3.1) Issue #12175: FileIO.readall() now raises a ValueError instead of by Victor Stinner · 13 years ago
  58. b79f28c Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 13 years ago
  59. fd82113 Fast path for IncrementalNewlineDecoder.decode() in io.TextIOWrapper.read(-1) by Victor Stinner · 13 years ago
  60. b89b31a Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  61. 00dd182 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  62. 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 13 years ago
  63. 4e19e11 Fix compile error under Windows by Antoine Pitrou · 13 years ago
  64. 3486a98 Issue #9971: Write an optimized implementation of BufferedReader.readinto(). by Antoine Pitrou · 13 years ago
  65. b938bcd (merge) Issue #11395: io.FileIO().write() clamps the data length to 32,767 by Victor Stinner · 13 years ago
  66. e0daff1 Issue #11395: io.FileIO().write() clamps the data length to 32,767 bytes on by Victor Stinner · 13 years ago
  67. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
  68. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  69. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 14 years ago
  70. d843c2d Merged revisions 88610 via svnmerge from by Antoine Pitrou · 14 years ago
  71. 707ce82 Issue #10956: Buffered I/O classes retry reading or writing after a signal by Antoine Pitrou · 14 years ago
  72. 211b81d Issue #11114: Fix catastrophic performance of tell() on text files (up by Antoine Pitrou · 14 years ago
  73. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 14 years ago
  74. 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 14 years ago
  75. a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 14 years ago
  76. 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 14 years ago
  77. e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 14 years ago
  78. 6cfc512 Merged revisions 87427 via svnmerge from by Antoine Pitrou · 14 years ago
  79. 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 14 years ago
  80. 976157f Merged revisions 86981,86984 via svnmerge from by Antoine Pitrou · 14 years ago
  81. f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 14 years ago
  82. d62ecbf Merged revisions 85728,85731,85735,85766-85771,85773,85777 via svnmerge from by Georg Brandl · 14 years ago
  83. 5a1ca6e Merged revisions 86587 via svnmerge from by Benjamin Peterson · 14 years ago
  84. fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 14 years ago
  85. bee3316 Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. by Matthias Klose · 14 years ago
  86. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  87. 735e3b1 Merged revisions 85982 via svnmerge from by Antoine Pitrou · 14 years ago
  88. bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
  89. 430d469 fix style by Benjamin Peterson · 14 years ago
  90. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  91. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  92. 9acae51 Merged revisions 85864 via svnmerge from by Antoine Pitrou · 14 years ago
  93. ea5d17d In open(), only set the buffer size from st.st_blksize when it is greater by Antoine Pitrou · 14 years ago
  94. 28928ae #4829: better error message for invalid file mode by Georg Brandl · 14 years ago
  95. 914a218 Merged revisions 82629,82632,82724,82757-82758,82760-82763,82798-82799,82801 via svnmerge from by Georg Brandl · 14 years ago
  96. 8ffe0bc Merged revisions 76923,76926,77009,77082-77083,77085,77087,77121 via svnmerge from by Georg Brandl · 14 years ago
  97. e5e75c6 Merged revisions 84814 via svnmerge from by Antoine Pitrou · 14 years ago
  98. 328ec74 Issue #9854: The default read() implementation in io.RawIOBase now by Antoine Pitrou · 14 years ago
  99. 616453c More docstring updates by Amaury Forgeot d'Arc · 14 years ago
  100. 972ee13 Issue #5506: BytesIO objects now have a getbuffer() method exporting a by Antoine Pitrou · 14 years ago