aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAge
* Revert r61508: it caused test_mailbox to fail on all platforms.Neal Norwitz2008-03-18
* In TextIOWrapper:Ka-Ping Yee2008-03-18
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-18
* Patch from jbalogh fixes issue #2282 (misnamed seekable() method).Ka-Ping Yee2008-03-17
* Fix issue1753: TextIOWrapper.write writes utf BOM for every string.Alexandre Vassalotti2008-01-07
* Add unit tests for the newlines property of IncrementalNewlineDecoder.Alexandre Vassalotti2008-01-06
* Fix the rest of issue 1400, by introducing a proper implementation ofGuido van Rossum2007-12-06
* You are right, Guido. The newline argument is easier to use.Christian Heimes2007-12-05
* Fixed line separator problem on WindowsChristian Heimes2007-12-05
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-03
* Rename buffer -> bytearray.Guido van Rossum2007-11-21
* Issue1395: Universal mode used to duplicate newlines when using read(1).Amaury Forgeot d'Arc2007-11-19
* Fixed bug #1081: file.seek allows float argumentsChristian Heimes2007-11-08
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-06
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-30
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-24
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-08
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-27
* Changes to io.py and socket.py by Christian Heimes.Guido van Rossum2007-08-27
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-27
* Fix an unfinished though in my own test code.Guido van Rossum2007-08-18
* New I/O code from Tony Lownds implement newline feature correctly,Guido van Rossum2007-08-18
* Accellerate binary readline() a bit.Guido van Rossum2007-06-07
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-24
* Fix a few places where a str instead of a bytes object was used.Guido van Rossum2007-05-08
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-07
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02
* Instead of pickling the whole decoder, use the new getstate/setstate API.Guido van Rossum2007-04-17
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-12
* Make sure that writing an array instance returns the number of bytes,Guido van Rossum2007-04-12
* Re-enable cleanup code.Guido van Rossum2007-04-11
* Speed up next() by disabling snapshot updating then.Guido van Rossum2007-04-11
* More efficient implementation of tell(); _read_chunk() doesn't have toGuido van Rossum2007-04-11
* Checkpoint so I can continue to work on this at a different box.Guido van Rossum2007-04-11
* truncate() returns the new size and position.Guido van Rossum2007-04-10
* Skip large file tests on Windowns and OSX.Guido van Rossum2007-04-10
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-10
* More cleanup. Renamed BlockingIO to BlockingIOError.Guido van Rossum2007-04-10
* Checkpoint.Guido van Rossum2007-04-06
* Added a working Text I/O layer, by Mark Russell.Guido van Rossum2007-04-06
* Check in Daniel Stutzbach's _fileio.c and test_fileio.pyGuido van Rossum2007-03-08
* Delete TESTFN after the test.Guido van Rossum2007-03-07
* Change the specs for readinto() -- it should *not* shorten the buffer toGuido van Rossum2007-03-07
* New version from Mike Verdone (sat in my inbox since 2/27).Guido van Rossum2007-03-07
* Mike Verdone's checkpoint, cleaned up.Guido van Rossum2007-02-27
* Checkpoint for new I/O library.Guido van Rossum2007-02-27