1. 16b11de Merged revisions 84239 via svnmerge from by Antoine Pitrou · 14 years ago
  2. 00091ca Merged revisions 83944 via svnmerge from by Antoine Pitrou · 14 years ago
  3. faf9007 Merged revisions 80722 via svnmerge from by Antoine Pitrou · 14 years ago
  4. 66f9fea Merged revisions 77895-77896 via svnmerge from by Antoine Pitrou · 15 years ago
  5. 6b59f77 Merged revisions 76806,76808 via svnmerge from by Benjamin Peterson · 15 years ago
  6. af0312a Merged revisions 74582 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  7. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  8. 0473e56 Merged revisions 74338 via svnmerge from by Antoine Pitrou · 15 years ago
  9. c7d6aa4 Merged revisions 73461 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  10. 0926ad1 give the C implementation of TextIOWrapper the errors property #6217 by Benjamin Peterson · 15 years ago
  11. 716c444 Issue #5761: Add the name of the underlying file to the repr() of various IO objects. by Antoine Pitrou · 15 years ago
  12. 81971ea correctly handle invalid operations on streams (like writing on a non-writable one) by Benjamin Peterson · 15 years ago
  13. e450185 Issue #5006: Better handling of unicode byte-order marks (BOM) in the io library. by Antoine Pitrou · 15 years ago
  14. d2e0c79 implement a detach() method for BufferedIOBase and TextIOBase #5883 by Benjamin Peterson · 15 years ago
  15. 6a52a9c fix test__all__ by Benjamin Peterson · 15 years ago
  16. 24fb1d0 these tests must call gc_collect() for non-refcounting gcs by Benjamin Peterson · 15 years ago
  17. 45cec32 make sure to close files by Benjamin Peterson · 15 years ago
  18. b01138a readline() args must be an int #3521 by Benjamin Peterson · 15 years ago
  19. c50cb8e Fix use of test skipping API. by Antoine Pitrou · 15 years ago
  20. cf4c749 Issue #5734: BufferedRWPair was poorly tested and had several glaring bugs. by Antoine Pitrou · 15 years ago
  21. 20c3b55 use the more offical skipping api by Benjamin Peterson · 15 years ago
  22. bfb9594 Merged revisions 71014 via svnmerge from by Benjamin Peterson · 15 years ago
  23. a1b4901 fix TextIOWrapper.read() when the buffer is not readable #5628 by Benjamin Peterson · 15 years ago
  24. 7d037a7 Plug another leak, and finally add a test for #1174606 (read() from /dev/zero). by Antoine Pitrou · 15 years ago
  25. 59406a9 officially deprecated max_buffer_size by Benjamin Peterson · 15 years ago
  26. c4c0eae give TextIOWrapper a repr that tells you the encoding by Benjamin Peterson · 15 years ago
  27. 66913e2 Issue #5433: Excessive newline detection optimization in IncrementalNewlineDecoder by Antoine Pitrou · 15 years ago
  28. 5fd871d rename by Benjamin Peterson · 15 years ago
  29. 9363a65 fix #4862 in _pyio: reset the decoder on seek(0) by Benjamin Peterson · 15 years ago
  30. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  31. b353c12 Issue #4631: Fix urlopen() result when an HTTP response uses chunked encoding. by Antoine Pitrou · 16 years ago
  32. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 16 years ago
  33. c10c34d Make test_io faster by Antoine Pitrou · 16 years ago
  34. 8043cf8 Issue #4604: Some objects of the I/O library could still be used after by Antoine Pitrou · 16 years ago
  35. c3b3924 Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. by Antoine Pitrou · 16 years ago
  36. 9203501 Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,67923-67924,67926-67927,67930,67943 via svnmerge from by Benjamin Peterson · 16 years ago
  37. 180a336 Issue #4574: reading an UTF16-encoded text file crashes if \r on 64-char boundary. by Antoine Pitrou · 16 years ago
  38. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  39. 40e8246 Fix for bug 4362 "FileIO object in io module"; Patch by amaury.forgeotdarc. by Barry Warsaw · 16 years ago
  40. 65676e4 Merged revisions 67089,67091,67101 via svnmerge from by Benjamin Peterson · 16 years ago
  41. ecc42a2 Fixed issue #4233. by Christian Heimes · 16 years ago
  42. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  43. df32b39 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 16 years ago
  44. 8769576 Merged revisions 65686 via svnmerge from by Antoine Pitrou · 16 years ago
  45. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  46. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  47. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  48. ad9d48d Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge from by Benjamin Peterson · 16 years ago
  49. e7789b1 Always try to delete the data file before and after the test. by Neal Norwitz · 16 years ago
  50. ab56887 Fixed parent class init by Christian Heimes · 16 years ago
  51. d24a5b6 Added a longish test case to stress seek/tell with a stateful decoder. by Ka-Ping Yee · 16 years ago
  52. e2b0705 Revert r61508: it caused test_mailbox to fail on all platforms. by Neal Norwitz · 16 years ago
  53. 30cc838 In TextIOWrapper: by Ka-Ping Yee · 16 years ago
  54. f44c7e8 Make TextIOWrapper's seek/tell work properly with stateful decoders; by Ka-Ping Yee · 16 years ago
  55. ddaa706 Patch from jbalogh fixes issue #2282 (misnamed seekable() method). by Ka-Ping Yee · 16 years ago
  56. a38f73b Fix issue1753: TextIOWrapper.write writes utf BOM for every string. by Alexandre Vassalotti · 17 years ago
  57. 472f07d Add unit tests for the newlines property of IncrementalNewlineDecoder. by Alexandre Vassalotti · 17 years ago
  58. f64db9f Fix the rest of issue 1400, by introducing a proper implementation of by Guido van Rossum · 17 years ago
  59. ecda261 You are right, Guido. The newline argument is easier to use. by Christian Heimes · 17 years ago
  60. 2ca76f6 Fixed line separator problem on Windows by Christian Heimes · 17 years ago
  61. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  62. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  63. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  64. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  65. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  66. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  67. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  68. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  69. 1f2ca56 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  70. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  71. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  72. 1836358 Fix an unfinished though in my own test code. by Guido van Rossum · 17 years ago
  73. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  74. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  75. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  76. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  77. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  78. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  79. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  80. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  81. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  82. d071281 Re-enable cleanup code. by Guido van Rossum · 17 years ago
  83. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  84. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  85. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  86. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  87. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 17 years ago
  88. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  89. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  90. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  91. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  92. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  93. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 17 years ago
  94. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 17 years ago
  95. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 17 years ago
  96. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 17 years ago
  97. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 17 years ago