Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Specify which I/O ABC methods have implementations in the docs. | Andrew Svetlov | 2012-12-06 | 1 | -0/+19 |
|\ | |||||
| * | Specify which I/O ABC methods have implementations in the docs. | Andrew Svetlov | 2012-12-06 | 1 | -0/+19 |
| | | |||||
* | | Add examples for opener argument of open (#13424). | Éric Araujo | 2012-11-03 | 1 | -0/+3 |
| | | | | | | | | Patch by Guillaume Pratte. | ||||
* | | Merge #15694: Link discussion of file objects to glossary entry. | R David Murray | 2012-08-18 | 1 | -5/+9 |
|\ \ | |/ | | | | | | | | | | | | | This is analogous to the link for `flie objects` in the description of 'open' that exists in the 2.7 docs, and adds a similar link to the io docs. Patch by Chris Jerdonek. | ||||
| * | #15694: Link discussion of file objects to glossary entry. | R David Murray | 2012-08-18 | 1 | -5/+9 |
| | | | | | | | | | | | | | | | | This is analogous to the link for `flie objects` in the description of 'open' that exists in the 2.7 docs, and adds a similar link to the io docs. Patch by Chris Jerdonek. | ||||
* | | Merge #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 1 | -9/+16 |
|\ \ | |/ | | | | | Patch by Chris Jerdonek. | ||||
| * | #15543: reflow paragraphs. | R David Murray | 2012-08-15 | 1 | -7/+7 |
| | | |||||
| * | #15543: glossary entry for and 'universal newlines', and links to it. | R David Murray | 2012-08-15 | 1 | -5/+12 |
| | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | merge with 3.2 | Georg Brandl | 2012-08-14 | 1 | -16/+13 |
|\ \ | |/ | |||||
| * | Restore original line lengths. | Georg Brandl | 2012-08-14 | 1 | -16/+13 |
| | | |||||
* | | Issue #15561: Update subprocess docs to reference io.TextIOWrapper. | Andrew Svetlov | 2012-08-13 | 1 | -1/+2 |
|\ \ | |/ | | | | | Patch by Chris Jerdonek. | ||||
* | | Issue #15624: clarify newline documentation for open and io.TextIOWrapper | Andrew Svetlov | 2012-08-13 | 1 | -12/+15 |
|\ \ | |/ | | | | | Thanks to Chris Jerdonek | ||||
| * | Issue #15624: clarify newline documentation for open and io.TextIOWrapper | Andrew Svetlov | 2012-08-13 | 1 | -12/+15 |
| | | | | | | | | Thanks to Chris Jerdonek | ||||
* | | (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n' | Victor Stinner | 2012-08-03 | 1 | -3/+3 |
|\ \ | |/ | | | | | doesn't translate newlines on output. | ||||
| * | open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't | Victor Stinner | 2012-08-03 | 1 | -3/+3 |
| | | | | | | | | translate newlines on output. | ||||
* | | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵ | Antoine Pitrou | 2012-08-03 | 1 | -8/+16 |
|\ \ | |/ | | | | | description from open(). | ||||
| * | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵ | Antoine Pitrou | 2012-08-03 | 1 | -8/+16 |
| | | | | | | | | description from open(). | ||||
* | | Mention the *limit* argument of TextIO.readline(). | Antoine Pitrou | 2012-07-25 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Mention the *limit* argument of TextIO.readline(). | Antoine Pitrou | 2012-07-25 | 1 | -1/+3 |
| | | |||||
* | | Some small fixes and clarifications to the io documentation | Eli Bendersky | 2012-07-14 | 1 | -42/+44 |
| | | |||||
* | | Issue #13248: io: Remove obsolete argument "max_buffer_size" of ↵ | Florent Xicluna | 2012-07-07 | 1 | -7/+0 |
| | | | | | | | | BufferedWriter and BufferedRWPair. | ||||
* | | Closes #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-06-22 | 1 | -0/+5 |
| | | |||||
* | | Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore | Victor Stinner | 2012-06-05 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | | | open() and io.TextIOWrapper are now calling locale.getpreferredencoding(False) instead of locale.getpreferredencoding() in text mode if the encoding is not specified. Don't change temporary the locale encoding using locale.setlocale(), use the current locale encoding instead of the user preferred encoding. Explain also in open() documentation that locale.getpreferredencoding(False) is called if the encoding is not specified. | ||||
* | | Backing out 86dc014cdd74. Not ready yet | Jesus Cea | 2012-04-26 | 1 | -5/+0 |
| | | |||||
* | | Close #10142: Support for SEEK_HOLE/SEEK_DATA | Jesus Cea | 2012-04-26 | 1 | -0/+5 |
| | | |||||
* | | Issue #12922: fix the TextIOBase documentation to include a description of ↵ | Antoine Pitrou | 2012-01-21 | 1 | -0/+26 |
|\ \ | |/ | | | | | seek() and tell() methods. | ||||
| * | Issue #12922: fix the TextIOBase documentation to include a description of ↵ | Antoine Pitrou | 2012-01-21 | 1 | -0/+26 |
| | | | | | | | | seek() and tell() methods. | ||||
* | | 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 |
|\ \ | |/ | | | | | same object as reader and writer, and deemphasize it in document order. | ||||
| * | Issue #12213: make it clear that BufferedRWPair shouldn't be called with the | Antoine Pitrou | 2011-08-20 | 1 | -19/+23 |
| | | | | | | | | same object as reader and writer, and deemphasize it in document order. | ||||
* | | Followup to c3b47cdea0d1: document the *write_through* argument to ↵ | Antoine Pitrou | 2011-07-23 | 1 | -1/+9 |
|/ | | | | TextIOWrapper. | ||||
* | issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵ | Senthil Kumaran | 2011-07-04 | 1 | -2/+2 |
| | | | | attribute and 'methods' where it denotes methods. Context should clarify usage. | ||||
* | Merged revisions 88540-88541 via svnmerge from | Benjamin Peterson | 2011-02-24 | 1 | -35/+31 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88540 | benjamin.peterson | 2011-02-23 20:46:00 -0600 (Wed, 23 Feb 2011) | 1 line this seems to be pointlessly nested ........ r88541 | benjamin.peterson | 2011-02-23 20:53:05 -0600 (Wed, 23 Feb 2011) | 1 line rewrite ........ | ||||
* | 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 |
| | | | | handles non-blocking readinto() returning None correctly. | ||||
* | Issue #5506: BytesIO objects now have a getbuffer() method exporting a | Antoine Pitrou | 2010-09-06 | 1 | -0/+18 |
| | | | | | view of their contents without duplicating them. The view is both readable and writable. | ||||
* | 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 |
| |