summaryrefslogtreecommitdiff
path: root/Lib/io.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-301-0/+7
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* #21225: copy docstrings from base classesAndrew Kuchling2014-04-251-4/+4
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
|\
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* | merge 3.2Benjamin Peterson2012-05-071-9/+0
|\ \ | |/
| * remove basically bitrotted XXXsBenjamin Peterson2012-05-071-9/+0
* | explicitly set UnsupportedOperation's module rather than relying on incorrect...Benjamin Peterson2012-05-071-0/+3
|/
* add myselfBenjamin Peterson2009-05-011-1/+2
* add UnsupportedOperation to __all__Benjamin Peterson2009-04-291-1/+1
* Merged revisions 70992,70995 via svnmerge fromBenjamin Peterson2009-04-011-1/+7
* simplify and beautify codeBenjamin Peterson2009-03-061-23/+12
* Fix failures introduced by buggy merge (2)Antoine Pitrou2009-03-041-1/+1
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-041-2077/+41
* Merged revisions 69846 via svnmerge fromMark Dickinson2009-02-211-2/+2
* Issue #4631: Fix urlopen() result when an HTTP response uses chunked encoding.Antoine Pitrou2009-02-111-2/+0
* Issue #4604: Some objects of the I/O library could still be used afterAntoine Pitrou2009-01-091-36/+38
* Merged revisions 67889-67892,67895,67898,67904-67907,67912,67918,67920-67921,...Benjamin Peterson2008-12-271-1/+1
* Issue #4663: increase the chunk size to improve TextIOWrapper performance on ...Antoine Pitrou2008-12-151-1/+1
* Issue #4574: reading an UTF16-encoded text file crashes if \r on 64-char boun...Antoine Pitrou2008-12-141-15/+12
* Fix for bug 4362 "FileIO object in io module"; Patch by amaury.forgeotdarc.Barry Warsaw2008-11-201-10/+16
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-021-8/+7
* Merged revisions 65791 via svnmerge fromBrett Cannon2008-08-181-1/+0
* Removed some unused imports to decrease the amount of loaded modules during s...Christian Heimes2008-08-151-2/+6
* Fix build from a blank checkout by using the _thread module instead of thread...Antoine Pitrou2008-08-151-3/+3
* Merged revisions 65686 via svnmerge fromAntoine Pitrou2008-08-141-39/+63
* #2523: binary buffered reading is quadraticAntoine Pitrou2008-07-281-30/+61
* Fixed test_tempfile.Alexandre Vassalotti2008-06-121-0/+16
* Issue 2918: Merge StringIO and cStringIO.Alexandre Vassalotti2008-06-111-10/+278
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-261-1/+1
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-6/+6
* Removed redundant max() call.Alexandre Vassalotti2008-05-091-1/+1
* Fixed the negative value check in io._BytesIO.seek().Alexandre Vassalotti2008-05-081-1/+1
* Cleaned how _BytesIO.read() returns an empty bytes object.Alexandre Vassalotti2008-05-071-1/+1
* Fixed a small bug introduced by r62778.Alexandre Vassalotti2008-05-061-1/+1
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-061-9/+66
* Merged revisions 62713,62715,62728,62737,62740,62744,62749,62756 via svnmerge...Christian Heimes2008-05-061-45/+38
* Fix problems in the io docs noted by Alexandre VassalottiBenjamin Peterson2008-04-141-7/+4
* Fleshed out docstrings in the io module, improving the reST one as I went.Benjamin Peterson2008-04-131-144/+296
* Remove __repr__ that doesn't have any advantage compared to the standard one.Georg Brandl2008-04-091-3/+0
* More docstring fixes, and an XXX.Georg Brandl2008-04-091-4/+5
* fixed outdated annotation of readinto in ioBenjamin Peterson2008-04-071-4/+4
* Docstring fix.Georg Brandl2008-04-061-2/+2
* fix typo in doc stringBenjamin Peterson2008-04-061-2/+2
* Clean up the TextIOWrapper code; pick better names; improve documentation.Ka-Ping Yee2008-03-201-123/+121
* This is r61508 plus additional fixes to the handling of 'limit'Ka-Ping Yee2008-03-201-64/+84
* Revert r61508: it caused test_mailbox to fail on all platforms.Neal Norwitz2008-03-181-82/+64
* In TextIOWrapper:Ka-Ping Yee2008-03-181-64/+82
* Make TextIOWrapper's seek/tell work properly with stateful decoders;Ka-Ping Yee2008-03-181-102/+182