1. 316414e Fix typo. by Georg Brandl · 17 years ago
  2. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  3. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  4. 79b79ee Patch # 1323 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  5. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  6. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  7. 7648ba8 Make the docstring for io.open() a raw string so that the explanation for the by Brett Cannon · 17 years ago
  8. 041683d Remove self-referential import. by Brett Cannon · 17 years ago
  9. e86254e In rseponse to bug# 1029, force the newline default for StringIO to "\n", by Guido van Rossum · 17 years ago
  10. dcce839 Insist that the argument to TextIOWrapper.write() is a basestring by Guido van Rossum · 17 years ago
  11. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  12. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  13. b7f136e Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, by Guido van Rossum · 17 years ago
  14. 8358db2 New I/O code from Tony Lownds implement newline feature correctly, by Guido van Rossum · 17 years ago
  15. 1e50a9f Fix test_wsgiref that used StringIO and a BufferedReader rather than by Neal Norwitz · 17 years ago
  16. d78d3b4 Fall back to ascii if the locale module cannot be loaded. by Martin v. Löwis · 17 years ago
  17. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  18. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  19. 5accbdb Make sure socket.close() doesn't interfere with socket.makefile(). by Jeremy Hylton · 17 years ago
  20. 3e1f85e Fix the minidom test. by Guido van Rossum · 17 years ago
  21. 67feb09 Delete redundant read() and close() methods from SocketIO class. by Guido van Rossum · 17 years ago
  22. 33e7a8e Make close() (all versions) ignore IOError from flush(). by Guido van Rossum · 17 years ago
  23. b972a78 SF patch# 1757683 by Alexandre Vassalotti. Add support for by Guido van Rossum · 17 years ago
  24. 469734b Set closed flag *after* calling flush(). by Guido van Rossum · 17 years ago
  25. 4b5386f Add proper tests for closed files to various I/O operations, by Guido van Rossum · 17 years ago
  26. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  27. 2bf7138 Make test_socket work. Don't exclude test_socket from the tests to run. by Guido van Rossum · 17 years ago
  28. 48fc58a Accellerate binary readline() a bit. by Guido van Rossum · 17 years ago
  29. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  30. 865b003 Remove debug print. by Walter Dörwald · 17 years ago
  31. a327000 Fix typo. by Walter Dörwald · 17 years ago
  32. 859b5ec Add isatty() to TextIOWrapper. by Guido van Rossum · 17 years ago
  33. fc3436b Add an encoding property to TextIOBase instances. by Guido van Rossum · 17 years ago
  34. fa0054a Make test_subprocess work. Fix universal newlines in io.py. by Guido van Rossum · 17 years ago
  35. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  36. 7d0a826 Sockets facelift. APIs that could return binary data (e.g. aton() and by Guido van Rossum · 17 years ago
  37. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  38. e35553e Fix io.StringIO for wide Python builds. by Walter Dörwald · 17 years ago
  39. 9d2ac22 Fix io.StringIO: String are stored encoded (using "unicode-internal" as the by Walter Dörwald · 17 years ago
  40. a5c313d Add to an XXX comment. by Guido van Rossum · 17 years ago
  41. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  42. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  43. d76e779 Instead of pickling the whole decoder, use the new getstate/setstate API. by Guido van Rossum · 17 years ago
  44. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  45. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  46. d410395 Make sure that writing an array instance returns the number of bytes, by Guido van Rossum · 17 years ago
  47. aa43ed9 TextIO improvement: by Guido van Rossum · 17 years ago
  48. b9c4c3e Speed up next() by disabling snapshot updating then. by Guido van Rossum · 17 years ago
  49. cba608c More efficient implementation of tell(); _read_chunk() doesn't have to by Guido van Rossum · 17 years ago
  50. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  51. 9b76da6 Checkpoint so I can continue to work on this at a different box. by Guido van Rossum · 17 years ago
  52. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  53. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  54. cce92b2 BufferedIOBase and TextIOBase should derive from IOBase, not from RawIOBase! by Guido van Rossum · 17 years ago
  55. 141f767 More cleanup. Renamed BlockingIO to BlockingIOError. by Guido van Rossum · 17 years ago
  56. 4f0db6e Cleanup. by Guido van Rossum · 17 years ago
  57. 9be5597 Add some backwards compatibility stuff. by Guido van Rossum · 17 years ago
  58. 76c5d4d Checkpoint. by Guido van Rossum · 17 years ago
  59. 1866859 Get rid of duplicate definition of BufferedIOBase. by Guido van Rossum · 17 years ago
  60. 78892e4 Added a working Text I/O layer, by Mark Russell. by Guido van Rossum · 17 years ago
  61. ef17c16 Bug 1679498: remove unused instance variables _readable, _writable and by Guido van Rossum · 17 years ago
  62. bb09b21 Bug 1679498: unset variable 'bs'. by Guido van Rossum · 17 years ago
  63. c819dea Add some XXX comments and fix BufferedReader signature. by Guido van Rossum · 17 years ago
  64. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago
  65. 00efead Change the specs for readinto() -- it should *not* shorten the buffer to by Guido van Rossum · 17 years ago
  66. 01a2752 New version from Mike Verdone (sat in my inbox since 2/27). by Guido van Rossum · 17 years ago
  67. 68bbcd2 Mike Verdone's checkpoint, cleaned up. by Guido van Rossum · 17 years ago
  68. 17e43e5 Added some comments and docstrings. More is needed. by Guido van Rossum · 17 years ago
  69. 8b41c3d Add some XXX comments for Guido to look at. by Neal Norwitz · 17 years ago
  70. 28524c7 Checkpoint for new I/O library. by Guido van Rossum · 17 years ago