| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #12922: fix the TextIOBase documentation to include a description of se... | Antoine Pitrou | 2012-01-21 | 1 | -0/+26 |
|\ |
|
| * | Issue #12922: fix the TextIOBase documentation to include a description of se... | Antoine Pitrou | 2012-01-21 | 1 | -0/+26 |
|
|
* | | Issue #12760: Refer to the new 'x' open mode as "exclusive creation" mode. | Charles-François Natali | 2012-01-14 | 1 | -6/+6 |
|
|
* | | Issue #12760: Add a create mode to open(). Patch by David Townshend. | Charles-François Natali | 2012-01-09 | 1 | -4/+8 |
|
|
* | | Issue #13513: IOBase docs incorrectly link to the readline module | Meador Inge | 2011-12-03 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #13513: IOBase docs incorrectly link to the readline module | Meador Inge | 2011-12-03 | 1 | -1/+1 |
|
|
* | | Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). | Ross Lagerwall | 2011-10-31 | 1 | -1/+10 |
|
|
* | | Fix mentions of IOError in the io module docs | Antoine Pitrou | 2011-10-12 | 1 | -9/+13 |
|
|
* | | Update doc for BlockingIOError and its alias in the io module | Antoine Pitrou | 2011-10-12 | 1 | -10/+2 |
|
|
* | | Issue #12213: make it clear that BufferedRWPair shouldn't be called with the | Antoine Pitrou | 2011-08-20 | 1 | -19/+23 |
|\ \
| |/ |
|
| * | Issue #12213: make it clear that BufferedRWPair shouldn't be called with the | Antoine Pitrou | 2011-08-20 | 1 | -19/+23 |
|
|
* | | Followup to c3b47cdea0d1: document the *write_through* argument to TextIOWrap... | Antoine Pitrou | 2011-07-23 | 1 | -1/+9 |
|/ |
|
* | issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ... | Senthil Kumaran | 2011-07-04 | 1 | -2/+2 |
|
|
* | Merged revisions 88540-88541 via svnmerge from | Benjamin Peterson | 2011-02-24 | 1 | -35/+31 |
|
|
* | Mention that seek and tell over a TextIOWrapper can be very slow. | Antoine Pitrou | 2011-02-04 | 1 | -0/+2 |
|
|
* | Add an "advanced topics" section to the io doc. | Antoine Pitrou | 2010-12-03 | 1 | -13/+65 |
|
|
* | Fix typo: "ofbytes" should be "of bytes" | Daniel Stutzbach | 2010-11-30 | 1 | -3/+3 |
|
|
* | Fix errors found by "make suspicious". | Georg Brandl | 2010-10-06 | 1 | -1/+1 |
|
|
* | Issue #9854: The default read() implementation in io.RawIOBase now | Antoine Pitrou | 2010-09-14 | 1 | -2/+3 |
|
|
* | Issue #5506: BytesIO objects now have a getbuffer() method exporting a | Antoine Pitrou | 2010-09-06 | 1 | -0/+18 |
|
|
* | rewrite and move open() docs only to functions.rst | Benjamin Peterson | 2010-08-30 | 1 | -179/+73 |
|
|
* | Issue #9715: improve documentation of the io module | Antoine Pitrou | 2010-08-30 | 1 | -52/+162 |
|
|
* | Consistency check for versionadded/changed directives. | Georg Brandl | 2010-08-17 | 1 | -1/+1 |
|
|
* | Terminology fix: exceptions are raised, except in generator.throw(). | Georg Brandl | 2010-08-03 | 1 | -1/+1 |
|
|
* | Clarify. | Georg Brandl | 2010-07-19 | 1 | -2/+2 |
|
|
* | Merged revisions 81594 via svnmerge from | Antoine Pitrou | 2010-05-29 | 1 | -4/+6 |
|
|
* | Merged revisions 80030,80067,80069,80080-80081,80084,80432-80433,80465-80470,... | Georg Brandl | 2010-05-19 | 1 | -1/+1 |
|
|
* | Merged revisions 80591-80592 via svnmerge from | Antoine Pitrou | 2010-04-28 | 1 | -8/+7 |
|
|
* | Merged revisions 80544 via svnmerge from | Benjamin Peterson | 2010-04-27 | 1 | -1/+1 |
|
|
* | lower case | Benjamin Peterson | 2010-02-19 | 1 | -1/+1 |
|
|
* | add a link to sys.std* in io docs | Benjamin Peterson | 2010-02-19 | 1 | -0/+5 |
|
|
* | Merged revisions 76896,76898 via svnmerge from | Antoine Pitrou | 2009-12-19 | 1 | -4/+14 |
|
|
* | Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-... | Benjamin Peterson | 2009-11-13 | 1 | -2/+2 |
|
|
* | Issue #7022: clarification of RawIOBase.read(), suggested by Pascal Chambon. | Antoine Pitrou | 2009-10-01 | 1 | -5/+8 |
|
|
* | Issue #6929: fix a couple of statements and clarify a lot of things in the IO... | Antoine Pitrou | 2009-09-17 | 1 | -68/+96 |
|
|
* | Merged revisions 74207 via svnmerge from | Georg Brandl | 2009-07-26 | 1 | -5/+5 |
|
|
* | Merged revisions 74209 via svnmerge from | Georg Brandl | 2009-07-26 | 1 | -1/+1 |
|
|
* | document BufferedIOBase.raw and TextIOBase.buffer | Benjamin Peterson | 2009-06-28 | 1 | -1/+13 |
|
|
* | rephrase for clarity | Benjamin Peterson | 2009-06-16 | 1 | -1/+1 |
|
|
* | update peek documentation to implementation | Benjamin Peterson | 2009-06-14 | 1 | -5/+3 |
|
|
* | give the C implementation of TextIOWrapper the errors property #6217 | Benjamin Peterson | 2009-06-06 | 1 | -5/+5 |
|
|
* | Convert all "i" docs to new style optional args. | Georg Brandl | 2009-06-01 | 1 | -19/+20 |
|
|
* | versionadded | Benjamin Peterson | 2009-05-01 | 1 | -0/+4 |
|
|
* | add myself | Benjamin Peterson | 2009-05-01 | 1 | -0/+1 |
|
|
* | implement a detach() method for BufferedIOBase and TextIOBase #5883 | Benjamin Peterson | 2009-05-01 | 1 | -1/+25 |
|
|
* | Update whatsnew based on doc search. | Raymond Hettinger | 2009-04-09 | 1 | -1/+1 |
|
|
* | Merged revisions 70992,70995 via svnmerge from | Benjamin Peterson | 2009-04-01 | 1 | -3/+9 |
|
|
* | sync open() docs more | Benjamin Peterson | 2009-03-23 | 1 | -18/+20 |
|
|
* | fix docs about open's return value #5539 | Benjamin Peterson | 2009-03-23 | 1 | -13/+15 |
|
|
* | fix StringIO constructor docs #5452 | Benjamin Peterson | 2009-03-09 | 1 | -4/+4 |
|
|