1. a2d6d71 call close on the underlying stream even if flush raises (#16597) by Benjamin Peterson · 13 years ago
  2. eadca1d Also add tests for TextIOWrapper.writelines() (issue #15744). by Antoine Pitrou · 13 years ago
  3. 78e761e Add tests for the writelines() method of file objects. by Antoine Pitrou · 13 years ago
  4. bff5df0 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  5. 877effc #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 13 years ago
  6. 5aa7df3 Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  7. 9ffcbf7 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 14 years ago
  8. 808cec5 Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 14 years ago
  9. 1616645 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 14 years ago
  10. 4c41f84 test_io: make quiet the DeprecationWarning('classic int division') by Victor Stinner · 14 years ago
  11. 49d495f Issue #12429: Skip interrupted write tests on FreeBSD <= 7 by Victor Stinner · 14 years ago
  12. daf17e9 Issue #12175: RawIOBase.readall() now returns None if read() returns None. by Victor Stinner · 14 years ago
  13. 5100a40 Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if by Victor Stinner · 14 years ago
  14. ee46a7b Issue #12062: In the `io` module, fix a flushing bug when doing a certain by Antoine Pitrou · 14 years ago
  15. 6439c00 Merged revisions 88610 via svnmerge from by Antoine Pitrou · 14 years ago
  16. fc9ead6 Merged revisions 87427 via svnmerge from by Antoine Pitrou · 15 years ago
  17. 4cb64ad Merged revisions 86981,86984 via svnmerge from by Antoine Pitrou · 15 years ago
  18. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  19. d989f82 Merged revisions 85482 via svnmerge from by Antoine Pitrou · 15 years ago
  20. 6391b34 Merged revisions 84814 via svnmerge from by Antoine Pitrou · 15 years ago
  21. 3fa3b00 Silence warning about 1/0 by Florent Xicluna · 15 years ago
  22. 3ebaed6 Merged revisions 84239 via svnmerge from by Antoine Pitrou · 15 years ago
  23. cb4f47c Merged revisions 83944 via svnmerge from by Antoine Pitrou · 15 years ago
  24. 73363e8 Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and by Victor Stinner · 15 years ago
  25. f7fd8e4 Issue #7865: The close() method of :mod:`io` objects should not swallow by Antoine Pitrou · 15 years ago
  26. 6a10281 Issue #7449, last part (11): fix many tests if thread support is disabled by Victor Stinner · 15 years ago
  27. bba8f2d Revert temporary commit in r79937 by Antoine Pitrou · 15 years ago
  28. 16e026c Temporary commit of fix to issue #5380 (in order to watch buildbot response) by Antoine Pitrou · 15 years ago
  29. 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
  30. 945a8ba Cleanup some test cases using check_warnings and check_py3k_warnings. by Florent Xicluna · 15 years ago
  31. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 15 years ago
  32. dde5b94 #7092: Silence more py3k warnings. Patch by Florent Xicluna. by Ezio Melotti · 16 years ago
  33. f3fa074 - Issue #6939: Fix file I/O objects in the `io` module to keep the original by Antoine Pitrou · 16 years ago
  34. b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
  35. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  36. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  37. ddd392c accept None as the same as having passed no argument in file types #7349 by Benjamin Peterson · 16 years ago
  38. fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 16 years ago
  39. 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 16 years ago
  40. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  41. cdcd4bf Issue #6215: Fixed to use self.open() instead of open() or io.open(). by Hirokazu Yamamoto · 16 years ago
  42. 1969059 Issue #6215: backport the 3.1 io lib by Antoine Pitrou · 16 years ago
  43. 3633c4f handle SEEK_ constants in test_io by Benjamin Peterson · 16 years ago
  44. e741cc6 Issue #5008: When a file is opened in append mode with the new IO library, by Antoine Pitrou · 17 years ago
  45. 54686e3 #4736 BufferRWPair.closed shouldn't try to call another property as a function by Benjamin Peterson · 17 years ago
  46. 655fbf1 Backport r67759 (fix io.IncrementalNewlineDecoder for UTF-16 et al.). by Antoine Pitrou · 17 years ago
  47. bfc5156 backport r67325: make FileIO.mode always contain 'b' by Benjamin Peterson · 17 years ago
  48. 3226565 Fixed issue #4233. by Amaury Forgeot d'Arc · 17 years ago
  49. ad100c3 backport r67300 by Benjamin Peterson · 17 years ago
  50. 81e92e5 move a FileIO test to test_fileio by Benjamin Peterson · 17 years ago
  51. ab5f879 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 17 years ago
  52. 41c56b5 build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files by Andrew MacIntyre · 17 years ago
  53. 11ec65d Issue #3476: make BufferedReader and BufferedWriter thread-safe by Antoine Pitrou · 17 years ago
  54. 1aed624 Backport fast alternate io.BytesIO implementation. by Alexandre Vassalotti · 17 years ago
  55. 7684f85 In test_io, StatefulIncrementalDecoderTest was not part of the test suite. by Amaury Forgeot d'Arc · 17 years ago
  56. f0a4970 Newly enabled test appears to leak: by Amaury Forgeot d'Arc · 17 years ago
  57. ce6f6c1 Fix and enable a skipped test: by Amaury Forgeot d'Arc · 17 years ago
  58. 3784c6b Use the new unicode literals for the io module by Christian Heimes · 17 years ago
  59. 1a6387e Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,61809,61812,61819,61917,61920,61930,61933-61934 via svnmerge from by Christian Heimes · 17 years ago