1. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  2. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  3. 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
  4. ad9d48d Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge from by Benjamin Peterson · 16 years ago
  5. e7789b1 Always try to delete the data file before and after the test. by Neal Norwitz · 16 years ago
  6. ab56887 Fixed parent class init by Christian Heimes · 16 years ago
  7. d24a5b6 Added a longish test case to stress seek/tell with a stateful decoder. by Ka-Ping Yee · 16 years ago
  8. e2b0705 Revert r61508: it caused test_mailbox to fail on all platforms. by Neal Norwitz · 16 years ago
  9. 30cc838 In TextIOWrapper: by Ka-Ping Yee · 16 years ago
  10. f44c7e8 Make TextIOWrapper's seek/tell work properly with stateful decoders; by Ka-Ping Yee · 16 years ago
  11. ddaa706 Patch from jbalogh fixes issue #2282 (misnamed seekable() method). by Ka-Ping Yee · 16 years ago
  12. a38f73b Fix issue1753: TextIOWrapper.write writes utf BOM for every string. by Alexandre Vassalotti · 17 years ago
  13. 472f07d Add unit tests for the newlines property of IncrementalNewlineDecoder. by Alexandre Vassalotti · 17 years ago
  14. f64db9f Fix the rest of issue 1400, by introducing a proper implementation of by Guido van Rossum · 17 years ago
  15. ecda261 You are right, Guido. The newline argument is easier to use. by Christian Heimes · 17 years ago
  16. 2ca76f6 Fixed line separator problem on Windows by Christian Heimes · 17 years ago
  17. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  18. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  19. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  20. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  21. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  22. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  23. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  24. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  25. 1f2ca56 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  26. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  27. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  28. 1836358 Fix an unfinished though in my own test code. by Guido van Rossum · 17 years ago
  29. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  30. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  31. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  32. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  33. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  34. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  35. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  36. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  37. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  38. d071281 Re-enable cleanup code. by Guido van Rossum · 17 years ago
  39. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  40. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  41. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  42. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  43. 34d69e5 Skip large file tests on Windowns and OSX. by Guido van Rossum · 17 years ago
  44. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  45. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  46. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  47. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  48. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  49. 4d0f5a4 Delete TESTFN after the test. by Guido van Rossum · 17 years ago
  50. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 17 years ago
  51. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 17 years ago
  52. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 17 years ago
  53. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 18 years ago