1. 3ade6f9 Fixed test_tempfile. by Alexandre Vassalotti · 16 years ago
  2. 794652d Issue 2918: Merge StringIO and cStringIO. by Alexandre Vassalotti · 16 years ago
  3. 0a7ac7d Create the dbm package from PEP 3108. #2881. by Georg Brandl · 16 years ago
  4. 5f8ced2 Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from by Alexandre Vassalotti · 16 years ago
  5. f0c0ff6 Removed redundant max() call. by Alexandre Vassalotti · 16 years ago
  6. 8130f7c Fixed the negative value check in io._BytesIO.seek(). by Alexandre Vassalotti · 16 years ago
  7. 2e0419d Cleaned how _BytesIO.read() returns an empty bytes object. by Alexandre Vassalotti · 16 years ago
  8. 4833b3c Fixed a small bug introduced by r62778. by Alexandre Vassalotti · 16 years ago
  9. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  10. 5d8da20 Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge from by Christian Heimes · 16 years ago
  11. 9efcc4b Fix problems in the io docs noted by Alexandre Vassalotti by Benjamin Peterson · 16 years ago
  12. 2c5f828 Fleshed out docstrings in the io module, improving the reST one as I went. by Benjamin Peterson · 16 years ago
  13. 8e2f755 Remove __repr__ that doesn't have any advantage compared to the standard one. by Georg Brandl · 16 years ago
  14. f91197c More docstring fixes, and an XXX. by Georg Brandl · 16 years ago
  15. ca2b015 fixed outdated annotation of readinto in io by Benjamin Peterson · 16 years ago
  16. 5358434 Docstring fix. by Georg Brandl · 16 years ago
  17. 9a89e96 fix typo in doc string by Benjamin Peterson · 16 years ago
  18. 593cd6b Clean up the TextIOWrapper code; pick better names; improve documentation. by Ka-Ping Yee · 16 years ago
  19. dbe28e5 This is r61508 plus additional fixes to the handling of 'limit' by Ka-Ping Yee · 16 years ago
  20. e2b0705 Revert r61508: it caused test_mailbox to fail on all platforms. by Neal Norwitz · 16 years ago
  21. 30cc838 In TextIOWrapper: by Ka-Ping Yee · 16 years ago
  22. f44c7e8 Make TextIOWrapper's seek/tell work properly with stateful decoders; by Ka-Ping Yee · 16 years ago
  23. ddaa706 Patch from jbalogh fixes issue #2282 (misnamed seekable() method). by Ka-Ping Yee · 16 years ago
  24. 7a0d398 Remove the "unsafe" flag on peek() -- it is no longer used, because by Ka-Ping Yee · 16 years ago
  25. 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
  26. a38f73b Fix issue1753: TextIOWrapper.write writes utf BOM for every string. by Alexandre Vassalotti · 17 years ago
  27. c3d7fe0 Fix the reset() method of IncrementalNewlineDecoder to also reset self.seennl. by Alexandre Vassalotti · 17 years ago
  28. a33eb06 Added descriptor for builtins.open.__doc__ by Christian Heimes · 17 years ago
  29. f64db9f Fix the rest of issue 1400, by introducing a proper implementation of by Guido van Rossum · 17 years ago
  30. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  31. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  32. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  33. a2d1d7e Oops, I missed this one again (test_univnewlines fails): by Amaury Forgeot d'Arc · 17 years ago
  34. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  35. 3ab4f65 seek() has to accept any int-like number by Christian Heimes · 17 years ago
  36. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  37. 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
  38. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  39. 316414e Fix typo. by Georg Brandl · 17 years ago
  40. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  41. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  42. 79b79ee Patch # 1323 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  43. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  44. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  45. 7648ba8 Make the docstring for io.open() a raw string so that the explanation for the by Brett Cannon · 17 years ago
  46. 041683d Remove self-referential import. by Brett Cannon · 17 years ago
  47. e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", by Guido van Rossum · 17 years ago
  48. dcce839 Insist that the argument to TextIOWrapper.write() is a basestring by Guido van Rossum · 17 years ago
  49. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  50. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  51. b7f136e Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, by Guido van Rossum · 17 years ago
  52. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  53. 1e50a9f Fix test_wsgiref that used StringIO and a BufferedReader rather than by Neal Norwitz · 17 years ago
  54. d78d3b4 Fall back to ascii if the locale module cannot be loaded. by Martin v. Löwis · 17 years ago
  55. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  56. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  57. 5accbdb Make sure socket.close() doesn't interfere with socket.makefile(). by Jeremy Hylton · 17 years ago
  58. 3e1f85e Fix the minidom test. by Guido van Rossum · 17 years ago
  59. 67feb09 Delete redundant read() and close() methods from SocketIO class. by Guido van Rossum · 17 years ago
  60. 33e7a8e Make close() (all versions) ignore IOError from flush(). by Guido van Rossum · 17 years ago
  61. b972a78 SF patch# 1757683 by Alexandre Vassalotti. Add support for by Guido van Rossum · 17 years ago
  62. 469734b Set closed flag *after* calling flush(). by Guido van Rossum · 17 years ago
  63. 4b5386f Add proper tests for closed files to various I/O operations, by Guido van Rossum · 17 years ago
  64. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  65. 2bf7138 Make test_socket work. Don't exclude test_socket from the tests to run. by Guido van Rossum · 17 years ago
  66. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  67. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  68. 865b003 Remove debug print. by Walter Dörwald · 17 years ago
  69. a327000 Fix typo. by Walter Dörwald · 17 years ago
  70. 859b5ec Add isatty() to TextIOWrapper. by Guido van Rossum · 17 years ago
  71. fc3436b Add an encoding property to TextIOBase instances. by Guido van Rossum · 17 years ago
  72. fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
  73. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  74. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  75. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  76. e35553e Fix io.StringIO for wide Python builds. by Walter Dörwald · 17 years ago
  77. 9d2ac22 Fix io.StringIO: String are stored encoded (using "unicode-internal" as the by Walter Dörwald · 17 years ago
  78. a5c313d Add to an XXX comment. by Guido van Rossum · 17 years ago
  79. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  80. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  81. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  82. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  83. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  84. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  85. aa43ed9 TextIO improvement: by Guido van Rossum · 17 years ago
  86. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  87. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  88. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  89. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  90. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  91. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  92. cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 17 years ago
  93. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  94. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  95. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  96. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  97. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  98. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  99. ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 17 years ago
  100. bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 17 years ago