summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
Commit message (Expand)AuthorAgeFilesLines
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-35/+35
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-061-3/+5
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-4/+4
* Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge fromBenjamin Peterson2008-04-021-12/+19
* Always try to delete the data file before and after the test.Neal Norwitz2008-03-241-0/+4
* Fixed parent class initChristian Heimes2008-03-231-1/+1
* Added a longish test case to stress seek/tell with a stateful decoder.Ka-Ping Yee2008-03-201-10/+20
* Revert r61508: it caused test_mailbox to fail on all platforms.Neal Norwitz2008-03-181-33/+5
* In TextIOWrapper:Ka-Ping Yee2008-03-181-5/+33
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-181-0/+171
* Patch from jbalogh fixes issue #2282 (misnamed seekable() method).Ka-Ping Yee2008-03-171-0/+6
* Fix issue1753: TextIOWrapper.write writes utf BOM for every string.Alexandre Vassalotti2008-01-071-0/+18
* Add unit tests for the newlines property of IncrementalNewlineDecoder.Alexandre Vassalotti2008-01-061-0/+16
* Fix the rest of issue 1400, by introducing a proper implementation ofGuido van Rossum2007-12-061-2/+15
* You are right, Guido. The newline argument is easier to use.Christian Heimes2007-12-051-4/+4
* Fixed line separator problem on WindowsChristian Heimes2007-12-051-2/+2
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-0/+40
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-4/+4
* Issue1395: Universal mode used to duplicate newlines when using read(1).Amaury Forgeot d'Arc2007-11-191-8/+120
* Fixed bug #1081: file.seek allows float argumentsChristian Heimes2007-11-081-0/+4
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-4/+5
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-0/+3
* Patch #1303: Adapt str8 constructor to bytes (now buffer) one.Georg Brandl2007-10-241-1/+1
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-1/+1
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-1/+1
* Changes to io.py and socket.py by Christian Heimes.Guido van Rossum2007-08-271-1/+16
* Changes in anticipation of stricter str vs. bytes enforcement.Guido van Rossum2007-08-271-1/+3
* Fix an unfinished though in my own test code.Guido van Rossum2007-08-181-19/+21
* New I/O code from Tony Lownds implement newline feature correctly,Guido van Rossum2007-08-181-12/+85
* Accellerate binary readline() a bit.Guido van Rossum2007-06-071-0/+12
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-241-1/+1
* Fix a few places where a str instead of a bytes object was used.Guido van Rossum2007-05-081-4/+4
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-10/+10
* Instead of pickling the whole decoder, use the new getstate/setstate API.Guido van Rossum2007-04-171-0/+30
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-121-2/+2
* Make sure that writing an array instance returns the number of bytes,Guido van Rossum2007-04-121-0/+11
* Re-enable cleanup code.Guido van Rossum2007-04-111-2/+2
* Speed up next() by disabling snapshot updating then.Guido van Rossum2007-04-111-0/+58
* More efficient implementation of tell(); _read_chunk() doesn't have toGuido van Rossum2007-04-111-5/+1
* Checkpoint so I can continue to work on this at a different box.Guido van Rossum2007-04-111-20/+88
* truncate() returns the new size and position.Guido van Rossum2007-04-101-12/+71
* Skip large file tests on Windowns and OSX.Guido van Rossum2007-04-101-10/+25
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-101-30/+37
* More cleanup. Renamed BlockingIO to BlockingIOError.Guido van Rossum2007-04-101-15/+1
* Checkpoint.Guido van Rossum2007-04-061-61/+62
* Added a working Text I/O layer, by Mark Russell.Guido van Rossum2007-04-061-21/+109
* Check in Daniel Stutzbach's _fileio.c and test_fileio.pyGuido van Rossum2007-03-081-0/+46
* Delete TESTFN after the test.Guido van Rossum2007-03-071-0/+3
* Change the specs for readinto() -- it should *not* shorten the buffer toGuido van Rossum2007-03-071-3/+6