| Commit message (Expand) | Author | Age | Files | Lines |
| * | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-09 | 1 | -0/+1 |
| * | Fix issue1753: TextIOWrapper.write writes utf BOM for every string. | Alexandre Vassalotti | 2008-01-07 | 1 | -4/+8 |
| * | Fix the reset() method of IncrementalNewlineDecoder to | Alexandre Vassalotti | 2007-12-28 | 1 | -0/+1 |
| * | Added descriptor for builtins.open.__doc__ | Christian Heimes | 2007-12-08 | 1 | -0/+10 |
| * | Fix the rest of issue 1400, by introducing a proper implementation of | Guido van Rossum | 2007-12-06 | 1 | -6/+14 |
| * | Add an errors parameter to open() and TextIOWrapper() to specify error handling. | Guido van Rossum | 2007-12-03 | 1 | -9/+27 |
| * | #1535: rename __builtin__ module to builtins. | Georg Brandl | 2007-12-02 | 1 | -1/+1 |
| * | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -6/+6 |
| * | Oops, I missed this one again (test_univnewlines fails): | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -1/+1 |
| * | Issue1395: Universal mode used to duplicate newlines when using read(1). | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -89/+116 |
| * | seek() has to accept any int-like number | Christian Heimes | 2007-11-09 | 1 | -2/+4 |
| * | Fixed bug #1081: file.seek allows float arguments | Christian Heimes | 2007-11-08 | 1 | -0/+2 |
| * | Fixed #1403 where compileall and py_compile choked on an encoding header in a... | Christian Heimes | 2007-11-08 | 1 | -0/+3 |
| * | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -14/+16 |
| * | Fix typo. | Georg Brandl | 2007-10-30 | 1 | -1/+1 |
| * | Patch 1329 (partial) by Christian Heimes. | Guido van Rossum | 2007-10-30 | 1 | -4/+9 |
| * | Patch 1330 by Christian Heimes (with some TLC applied by myself). | Guido van Rossum | 2007-10-26 | 1 | -14/+4 |
| * | Patch # 1323 by Amaury Forgeot d'Arc. | Guido van Rossum | 2007-10-25 | 1 | -2/+17 |
| * | Patch 1267 by Christian Heimes. | Guido van Rossum | 2007-10-19 | 1 | -0/+12 |
| * | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -5/+5 |
| * | Make the docstring for io.open() a raw string so that the explanation for the | Brett Cannon | 2007-10-15 | 1 | -1/+1 |
| * | Remove self-referential import. | Brett Cannon | 2007-10-11 | 1 | -2/+1 |
| * | In rseponse to bug# 1029, force the newline default for StringIO to "\n", | Guido van Rossum | 2007-08-29 | 1 | -1/+1 |
| * | Insist that the argument to TextIOWrapper.write() is a basestring | Guido van Rossum | 2007-08-29 | 1 | -0/+3 |
| * | Commit strict str/bytes distinction. | Guido van Rossum | 2007-08-29 | 1 | -8/+5 |
| * | Changes to io.py and socket.py by Christian Heimes. | Guido van Rossum | 2007-08-27 | 1 | -25/+57 |
| * | Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass, | Guido van Rossum | 2007-08-22 | 1 | -1/+2 |
| * | New I/O code from Tony Lownds implement newline feature correctly, | Guido van Rossum | 2007-08-18 | 1 | -50/+160 |
| * | Fix test_wsgiref that used StringIO and a BufferedReader rather than | Neal Norwitz | 2007-08-11 | 1 | -1/+2 |
| * | Fall back to ascii if the locale module cannot be loaded. | Martin v. Löwis | 2007-08-11 | 1 | -2/+7 |
| * | Set sys.stdout.encoding properly. | Martin v. Löwis | 2007-08-11 | 1 | -2/+7 |
| * | SF patch# 1770008 by Christian Heimes (plus some extras). | Guido van Rossum | 2007-08-09 | 1 | -0/+5 |
| * | Make sure socket.close() doesn't interfere with socket.makefile(). | Jeremy Hylton | 2007-08-03 | 1 | -28/+0 |
| * | Fix the minidom test. | Guido van Rossum | 2007-07-27 | 1 | -3/+5 |
| * | Delete redundant read() and close() methods from SocketIO class. | Guido van Rossum | 2007-07-27 | 1 | -24/+0 |
| * | Make close() (all versions) ignore IOError from flush(). | Guido van Rossum | 2007-07-22 | 1 | -4/+11 |
| * | SF patch# 1757683 by Alexandre Vassalotti. Add support for | Guido van Rossum | 2007-07-21 | 1 | -0/+5 |
| * | Set closed flag *after* calling flush(). | Guido van Rossum | 2007-07-10 | 1 | -2/+4 |
| * | Add proper tests for closed files to various I/O operations, | Guido van Rossum | 2007-07-10 | 1 | -4/+21 |
| * | Made test_file pass. This meant adding support for read(-1) and read() | Guido van Rossum | 2007-07-10 | 1 | -35/+56 |
| * | Make test_socket work. | Guido van Rossum | 2007-06-08 | 1 | -7/+13 |
| * | Accellerate binary readline() a bit. | Guido van Rossum | 2007-06-07 | 1 | -8/+14 |
| * | tokenizer.c: make coding markup work again. | Guido van Rossum | 2007-06-07 | 1 | -2/+1 |
| * | Remove debug print. | Walter Dörwald | 2007-05-29 | 1 | -1/+0 |
| * | Fix typo. | Walter Dörwald | 2007-05-29 | 1 | -1/+2 |
| * | Add isatty() to TextIOWrapper. | Guido van Rossum | 2007-05-27 | 1 | -0/+3 |
| * | Add an encoding property to TextIOBase instances. | Guido van Rossum | 2007-05-24 | 1 | -0/+9 |
| * | Make test_subprocess work. Fix universal newlines in io.py. | Guido van Rossum | 2007-05-24 | 1 | -14/+6 |
| * | Remove native popen() and fdopen(), replacing them with subprocess calls. | Guido van Rossum | 2007-05-24 | 1 | -2/+6 |
| * | Sockets facelift. APIs that could return binary data (e.g. aton() and | Guido van Rossum | 2007-05-21 | 1 | -17/+37 |