| Commit message (Expand) | Author | Age | Files | Lines |
* | Plug another leak, and finally add a test for #1174606 (read() from /dev/zero). | Antoine Pitrou | 2009-03-29 | 1 | -0/+16 |
|
|
* | officially deprecated max_buffer_size | Benjamin Peterson | 2009-03-26 | 1 | -2/+24 |
|
|
* | give TextIOWrapper a repr that tells you the encoding | Benjamin Peterson | 2009-03-09 | 1 | -0/+6 |
|
|
* | Issue #5433: Excessive newline detection optimization in IncrementalNewlineDe... | Antoine Pitrou | 2009-03-06 | 1 | -0/+13 |
|
|
* | rename | Benjamin Peterson | 2009-03-05 | 1 | -3/+3 |
|
|
* | fix #4862 in _pyio: reset the decoder on seek(0) | Benjamin Peterson | 2009-03-05 | 1 | -0/+2 |
|
|
* | merge the io-c branch: C implementation of the io module | Benjamin Peterson | 2009-03-04 | 1 | -404/+1114 |
|
|
* | Issue #4631: Fix urlopen() result when an HTTP response uses chunked encoding. | Antoine Pitrou | 2009-02-11 | 1 | -0/+1 |
|
|
* | Merged revisions 68835 via svnmerge from | Antoine Pitrou | 2009-01-21 | 1 | -0/+11 |
|
|
* | Make test_io faster | Antoine Pitrou | 2009-01-17 | 1 | -1/+5 |
|
|
* | Issue #4604: Some objects of the I/O library could still be used after | Antoine Pitrou | 2009-01-09 | 1 | -0/+39 |
|
|
* | Issue #4580: slicing of memoryviews when itemsize != 1 is wrong. | Antoine Pitrou | 2009-01-03 | 1 | -1/+1 |
|
|
* | Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,... | Benjamin Peterson | 2008-12-27 | 1 | -1/+2 |
|
|
* | Issue #4574: reading an UTF16-encoded text file crashes if \r on 64-char boun... | Antoine Pitrou | 2008-12-14 | 1 | -40/+72 |
|
|
* | make FileIO.mode always include 'b' | Benjamin Peterson | 2008-11-22 | 1 | -7/+7 |
|
|
* | Fix for bug 4362 "FileIO object in io module"; Patch by amaury.forgeotdarc. | Barry Warsaw | 2008-11-20 | 1 | -0/+31 |
|
|
* | Merged revisions 67089,67091,67101 via svnmerge from | Benjamin Peterson | 2008-11-05 | 1 | -0/+1 |
|
|
* | Fixed issue #4233. | Christian Heimes | 2008-11-05 | 1 | -9/+23 |
|
|
* | Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv... | Benjamin Peterson | 2008-11-03 | 1 | -0/+1 |
|
|
* | Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ... | Christian Heimes | 2008-10-30 | 1 | -0/+7 |
|
|
* | Merged revisions 65686 via svnmerge from | Antoine Pitrou | 2008-08-14 | 1 | -1/+78 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -35/+35 |
|
|
* | Added fast alternate io.BytesIO implementation and its test suite. | Alexandre Vassalotti | 2008-05-06 | 1 | -3/+5 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 1 | -4/+4 |
|
|
* | Merged revisions 62090-62091,62096,62100,62102,62110-62114 via svnmerge from | Benjamin Peterson | 2008-04-02 | 1 | -12/+19 |
|
|
* | Always try to delete the data file before and after the test. | Neal Norwitz | 2008-03-24 | 1 | -0/+4 |
|
|
* | Fixed parent class init | Christian Heimes | 2008-03-23 | 1 | -1/+1 |
|
|
* | Added a longish test case to stress seek/tell with a stateful decoder. | Ka-Ping Yee | 2008-03-20 | 1 | -10/+20 |
|
|
* | Revert r61508: it caused test_mailbox to fail on all platforms. | Neal Norwitz | 2008-03-18 | 1 | -33/+5 |
|
|
* | In TextIOWrapper: | Ka-Ping Yee | 2008-03-18 | 1 | -5/+33 |
|
|
* | Make TextIOWrapper's seek/tell work properly with stateful decoders; | Ka-Ping Yee | 2008-03-18 | 1 | -0/+171 |
|
|
* | Patch from jbalogh fixes issue #2282 (misnamed seekable() method). | Ka-Ping Yee | 2008-03-17 | 1 | -0/+6 |
|
|
* | Fix issue1753: TextIOWrapper.write writes utf BOM for every string. | Alexandre Vassalotti | 2008-01-07 | 1 | -0/+18 |
|
|
* | Add unit tests for the newlines property of IncrementalNewlineDecoder. | Alexandre Vassalotti | 2008-01-06 | 1 | -0/+16 |
|
|
* | Fix the rest of issue 1400, by introducing a proper implementation of | Guido van Rossum | 2007-12-06 | 1 | -2/+15 |
|
|
* | You are right, Guido. The newline argument is easier to use. | Christian Heimes | 2007-12-05 | 1 | -4/+4 |
|
|
* | Fixed line separator problem on Windows | Christian Heimes | 2007-12-05 | 1 | -2/+2 |
|
|
* | Add an errors parameter to open() and TextIOWrapper() to specify error handling. | Guido van Rossum | 2007-12-03 | 1 | -0/+40 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -4/+4 |
|
|
* | Issue1395: Universal mode used to duplicate newlines when using read(1). | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -8/+120 |
|
|
* | Fixed bug #1081: file.seek allows float arguments | Christian Heimes | 2007-11-08 | 1 | -0/+4 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -4/+5 |
|
|
* | Patch 1329 (partial) by Christian Heimes. | Guido van Rossum | 2007-10-30 | 1 | -0/+3 |
|
|
* | Patch #1303: Adapt str8 constructor to bytes (now buffer) one. | Georg Brandl | 2007-10-24 | 1 | -1/+1 |
|
|
* | Breaking ground for PEP 3137 implementation: | Guido van Rossum | 2007-10-08 | 1 | -1/+1 |
|
|
* | Changes in anticipation of stricter str vs. bytes enforcement. | Guido van Rossum | 2007-08-27 | 1 | -1/+1 |
|
|
* | Changes to io.py and socket.py by Christian Heimes. | Guido van Rossum | 2007-08-27 | 1 | -1/+16 |
|
|
* | Changes in anticipation of stricter str vs. bytes enforcement. | Guido van Rossum | 2007-08-27 | 1 | -1/+3 |
|
|
* | Fix an unfinished though in my own test code. | Guido van Rossum | 2007-08-18 | 1 | -19/+21 |
|
|
* | New I/O code from Tony Lownds implement newline feature correctly, | Guido van Rossum | 2007-08-18 | 1 | -12/+85 |
|
|