1. 9efcc4b Fix problems in the io docs noted by Alexandre Vassalotti by Benjamin Peterson · 16 years ago
  2. 2c5f828 Fleshed out docstrings in the io module, improving the reST one as I went. by Benjamin Peterson · 16 years ago
  3. 8e2f755 Remove __repr__ that doesn't have any advantage compared to the standard one. by Georg Brandl · 16 years ago
  4. f91197c More docstring fixes, and an XXX. by Georg Brandl · 16 years ago
  5. ca2b015 fixed outdated annotation of readinto in io by Benjamin Peterson · 16 years ago
  6. 5358434 Docstring fix. by Georg Brandl · 16 years ago
  7. 9a89e96 fix typo in doc string by Benjamin Peterson · 16 years ago
  8. 593cd6b Clean up the TextIOWrapper code; pick better names; improve documentation. by Ka-Ping Yee · 17 years ago
  9. dbe28e5 This is r61508 plus additional fixes to the handling of 'limit' by Ka-Ping Yee · 17 years ago
  10. e2b0705 Revert r61508: it caused test_mailbox to fail on all platforms. by Neal Norwitz · 17 years ago
  11. 30cc838 In TextIOWrapper: by Ka-Ping Yee · 17 years ago
  12. f44c7e8 Make TextIOWrapper's seek/tell work properly with stateful decoders; by Ka-Ping Yee · 17 years ago
  13. ddaa706 Patch from jbalogh fixes issue #2282 (misnamed seekable() method). by Ka-Ping Yee · 17 years ago
  14. 7a0d398 Remove the "unsafe" flag on peek() -- it is no longer used, because by Ka-Ping Yee · 17 years ago
  15. 3ecfea71 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678-60695 via svnmerge from by Christian Heimes · 17 years ago
  16. a38f73b Fix issue1753: TextIOWrapper.write writes utf BOM for every string. by Alexandre Vassalotti · 17 years ago
  17. c3d7fe0 Fix the reset() method of IncrementalNewlineDecoder to also reset self.seennl. by Alexandre Vassalotti · 17 years ago
  18. a33eb06 Added descriptor for builtins.open.__doc__ by Christian Heimes · 17 years ago
  19. f64db9f Fix the rest of issue 1400, by introducing a proper implementation of by Guido van Rossum · 17 years ago
  20. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  21. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  22. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  23. a2d1d7e Oops, I missed this one again (test_univnewlines fails): by Amaury Forgeot d'Arc · 17 years ago
  24. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  25. 3ab4f65 seek() has to accept any int-like number by Christian Heimes · 17 years ago
  26. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  27. 8bd14fb Fixed #1403 where compileall and py_compile choked on an encoding header in a py file. Both modules need more unit tests. by Christian Heimes · 17 years ago
  28. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  29. 316414e Fix typo. by Georg Brandl · 17 years ago
  30. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  31. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  32. 79b79ee Patch # 1323 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  33. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  34. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  35. 7648ba8 Make the docstring for io.open() a raw string so that the explanation for the by Brett Cannon · 17 years ago
  36. 041683d Remove self-referential import. by Brett Cannon · 17 years ago
  37. e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", by Guido van Rossum · 17 years ago
  38. dcce839 Insist that the argument to TextIOWrapper.write() is a basestring by Guido van Rossum · 17 years ago
  39. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  40. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  41. b7f136e Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, by Guido van Rossum · 17 years ago
  42. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  43. 1e50a9f Fix test_wsgiref that used StringIO and a BufferedReader rather than by Neal Norwitz · 17 years ago
  44. d78d3b4 Fall back to ascii if the locale module cannot be loaded. by Martin v. Löwis · 17 years ago
  45. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  46. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  47. 5accbdb Make sure socket.close() doesn't interfere with socket.makefile(). by Jeremy Hylton · 17 years ago
  48. 3e1f85e Fix the minidom test. by Guido van Rossum · 17 years ago
  49. 67feb09 Delete redundant read() and close() methods from SocketIO class. by Guido van Rossum · 17 years ago
  50. 33e7a8e Make close() (all versions) ignore IOError from flush(). by Guido van Rossum · 17 years ago
  51. b972a78 SF patch# 1757683 by Alexandre Vassalotti. Add support for by Guido van Rossum · 17 years ago
  52. 469734b Set closed flag *after* calling flush(). by Guido van Rossum · 17 years ago
  53. 4b5386f Add proper tests for closed files to various I/O operations, by Guido van Rossum · 17 years ago
  54. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  55. 2bf7138 Make test_socket work. Don't exclude test_socket from the tests to run. by Guido van Rossum · 17 years ago
  56. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  57. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  58. 865b003 Remove debug print. by Walter Dörwald · 17 years ago
  59. a327000 Fix typo. by Walter Dörwald · 17 years ago
  60. 859b5ec Add isatty() to TextIOWrapper. by Guido van Rossum · 17 years ago
  61. fc3436b Add an encoding property to TextIOBase instances. by Guido van Rossum · 17 years ago
  62. fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
  63. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  64. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  65. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  66. e35553e Fix io.StringIO for wide Python builds. by Walter Dörwald · 17 years ago
  67. 9d2ac22 Fix io.StringIO: String are stored encoded (using "unicode-internal" as the by Walter Dörwald · 17 years ago
  68. a5c313d Add to an XXX comment. by Guido van Rossum · 17 years ago
  69. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  70. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  71. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  72. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  73. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  74. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  75. aa43ed9 TextIO improvement: by Guido van Rossum · 17 years ago
  76. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  77. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  78. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  79. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  80. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  81. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  82. cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 17 years ago
  83. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  84. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  85. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  86. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  87. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  88. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  89. ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 18 years ago
  90. bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 18 years ago
  91. c819dea Add some XXX comments and fix BufferedReader signature. by Guido van Rossum · 18 years ago
  92. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 18 years ago
  93. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 18 years ago
  94. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 18 years ago
  95. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 18 years ago
  96. 17e43e5 Added some comments and docstrings. More is needed. by Guido van Rossum · 18 years ago
  97. 8b41c3d Add some XXX comments for Guido to look at. by Neal Norwitz · 18 years ago
  98. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 18 years ago