summaryrefslogtreecommitdiffstats
path: root/Doc/library/io.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22413: Merge StringIO doc from 3.4 into 3.5Martin Panter2015-10-101-4/+12
|\
| * Issue #22413: Document newline effect on StringIO initializer and getvalueMartin Panter2015-10-101-4/+12
| | | | | | | | Also add to comment in the C code.
* | whatsnew/3.5: Sync whatsnew with versionadded/versionchanged doc tagsYury Selivanov2015-09-111-1/+1
| |
* | Issue #25030: Merge seek() doc fixes from 3.4 into 3.5Martin Panter2015-09-111-6/+7
|\ \ | |/
| * Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-6/+7
| | | | | | | | Patch from Shiyao Ma.
* | Issue #23668: Adds support for os.truncate and os.ftruncate on WindowsSteve Dower2015-03-211-2/+5
| |
* | Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-6/+7
|\ \ | |/ | | | | prevent corrupting exported buffer.
| * Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-031-6/+7
| | | | | | | | prevent corrupting exported buffer.
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-5/+6
| | | | | | | | decoding and translating.
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-251-3/+4
| |
* | Issue #17401: document closefd in io.FileIO docs and add to reprRobert Collins2014-10-181-2/+5
| | | | | | | | | | | | | | | | | | | | closefd was documented in the open docs but not the matching FileIO class documented. Further, closefd, part of the core state for the object was not shown. In review it was noted that the open docs are a little confusing about the interaction between closefd and paths, so tweaked them at the same time.
* | Closes #22004: Merge with 3.4Zachary Ware2014-07-181-1/+1
|\ \ | |/
| * Issue #22004: Correct an argument name.Zachary Ware2014-07-181-1/+1
| |
* | reflow to 80 charsBenjamin Peterson2014-06-221-13/+12
| |
* | add BufferedIOBase.readinto1 (closes #20578)Benjamin Peterson2014-06-221-4/+22
|/ | | | Patch by Nikolaus Rath.
* document IOBase.__del__'s behavior (closes #21764)Benjamin Peterson2014-06-151-0/+6
| | | | Patch from Nikolaus Rath.
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-0/+1
|
* Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-2/+3
|\
| * Issue #20423: fix documentation of io.StringIO's newline parameterAntoine Pitrou2014-02-021-2/+3
| |
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
| |
* | Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-2/+2
|\ \ | |/
| * Issue #18758: Fixed and improved cross-references.Serhiy Storchaka2013-10-131-2/+2
| |
* | Issue #17003: Unified the size argument names in the io module with commonSerhiy Storchaka2013-09-161-26/+26
| | | | | | | | practice.
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-0/+5
|/ | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* #13510: clarify that f.readlines() is note necessary to iterate over a file. ↵Ezio Melotti2013-04-151-0/+3
| | | | Patch by Dan Riti.
* Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-281-0/+2
| | | | otherwise are cut off or have overlapping text.
* Issue #17215: Fix documentation misprints (patch by July Tikhonov)Andrew Svetlov2013-02-171-1/+1
|
* Merge fixes for #13614, #13512 and #7719 from 3.2Éric Araujo2012-12-091-1/+1
|\
| * Fix a few markup/grammar nitsÉric Araujo2012-12-081-1/+1
| |
* | Specify which I/O ABC methods have implementations in the docs.Andrew Svetlov2012-12-061-0/+19
|\ \ | |/
| * Specify which I/O ABC methods have implementations in the docs.Andrew Svetlov2012-12-061-0/+19
| |
* | Add examples for opener argument of open (#13424).Éric Araujo2012-11-031-0/+3
| | | | | | | | Patch by Guillaume Pratte.
* | Merge #15694: Link discussion of file objects to glossary entry.R David Murray2012-08-181-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 Murray2012-08-181-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 Murray2012-08-151-9/+16
|\ \ | |/ | | | | Patch by Chris Jerdonek.
| * #15543: reflow paragraphs.R David Murray2012-08-151-7/+7
| |
| * #15543: glossary entry for and 'universal newlines', and links to it.R David Murray2012-08-151-5/+12
| | | | | | | | Patch by Chris Jerdonek.
* | merge with 3.2Georg Brandl2012-08-141-16/+13
|\ \ | |/
| * Restore original line lengths.Georg Brandl2012-08-141-16/+13
| |
* | Issue #15561: Update subprocess docs to reference io.TextIOWrapper.Andrew Svetlov2012-08-131-1/+2
|\ \ | |/ | | | | Patch by Chris Jerdonek.
* | Issue #15624: clarify newline documentation for open and io.TextIOWrapperAndrew Svetlov2012-08-131-12/+15
|\ \ | |/ | | | | Thanks to Chris Jerdonek
| * Issue #15624: clarify newline documentation for open and io.TextIOWrapperAndrew Svetlov2012-08-131-12/+15
| | | | | | | | Thanks to Chris Jerdonek
* | (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'Victor Stinner2012-08-031-3/+3
|\ \ | |/ | | | | doesn't translate newlines on output.
| * open() / TextIOWrapper doc: make it explicit than newline='\n' doesn'tVictor Stinner2012-08-031-3/+3
| | | | | | | | translate newlines on output.
* | Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-031-8/+16
|\ \ | |/ | | | | description from open().
| * Make TextIOWrapper's documentation clearer by copying the newline argument's ↵Antoine Pitrou2012-08-031-8/+16
| | | | | | | | description from open().
* | Mention the *limit* argument of TextIO.readline().Antoine Pitrou2012-07-251-1/+3
|\ \ | |/
| * Mention the *limit* argument of TextIO.readline().Antoine Pitrou2012-07-251-1/+3
| |
* | Some small fixes and clarifications to the io documentationEli Bendersky2012-07-141-42/+44
| |