| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixed test_tempfile. | Alexandre Vassalotti | 2008-06-12 | 1 | -0/+16 |
|
|
* | Issue 2918: Merge StringIO and cStringIO. | Alexandre Vassalotti | 2008-06-11 | 1 | -10/+278 |
|
|
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 | 1 | -1/+1 |
|
|
* | Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,... | Alexandre Vassalotti | 2008-05-16 | 1 | -6/+6 |
|
|
* | Removed redundant max() call. | Alexandre Vassalotti | 2008-05-09 | 1 | -1/+1 |
|
|
* | Fixed the negative value check in io._BytesIO.seek(). | Alexandre Vassalotti | 2008-05-08 | 1 | -1/+1 |
|
|
* | Cleaned how _BytesIO.read() returns an empty bytes object. | Alexandre Vassalotti | 2008-05-07 | 1 | -1/+1 |
|
|
* | Fixed a small bug introduced by r62778. | Alexandre Vassalotti | 2008-05-06 | 1 | -1/+1 |
|
|
* | Added fast alternate io.BytesIO implementation and its test suite. | Alexandre Vassalotti | 2008-05-06 | 1 | -9/+66 |
|
|
* | Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge... | Christian Heimes | 2008-05-06 | 1 | -45/+38 |
|
|
* | Fix problems in the io docs noted by Alexandre Vassalotti | Benjamin Peterson | 2008-04-14 | 1 | -7/+4 |
|
|
* | Fleshed out docstrings in the io module, improving the reST one as I went. | Benjamin Peterson | 2008-04-13 | 1 | -144/+296 |
|
|
* | Remove __repr__ that doesn't have any advantage compared to the standard one. | Georg Brandl | 2008-04-09 | 1 | -3/+0 |
|
|
* | More docstring fixes, and an XXX. | Georg Brandl | 2008-04-09 | 1 | -4/+5 |
|
|
* | fixed outdated annotation of readinto in io | Benjamin Peterson | 2008-04-07 | 1 | -4/+4 |
|
|
* | Docstring fix. | Georg Brandl | 2008-04-06 | 1 | -2/+2 |
|
|
* | fix typo in doc string | Benjamin Peterson | 2008-04-06 | 1 | -2/+2 |
|
|
* | Clean up the TextIOWrapper code; pick better names; improve documentation. | Ka-Ping Yee | 2008-03-20 | 1 | -123/+121 |
|
|
* | This is r61508 plus additional fixes to the handling of 'limit' | Ka-Ping Yee | 2008-03-20 | 1 | -64/+84 |
|
|
* | Revert r61508: it caused test_mailbox to fail on all platforms. | Neal Norwitz | 2008-03-18 | 1 | -82/+64 |
|
|
* | In TextIOWrapper: | Ka-Ping Yee | 2008-03-18 | 1 | -64/+82 |
|
|
* | Make TextIOWrapper's seek/tell work properly with stateful decoders; | Ka-Ping Yee | 2008-03-18 | 1 | -102/+182 |
|
|
* | Patch from jbalogh fixes issue #2282 (misnamed seekable() method). | Ka-Ping Yee | 2008-03-17 | 1 | -1/+1 |
|
|
* | Remove the "unsafe" flag on peek() -- it is no longer used, because | Ka-Ping Yee | 2008-03-17 | 1 | -13/+8 |
|
|
* | 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 |
|
|