summaryrefslogtreecommitdiffstats
path: root/Lib/io.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Patch from jbalogh fixes issue #2282 (misnamed seekable() method).Ka-Ping Yee2008-03-171-1/+1
* Remove the "unsafe" flag on peek() -- it is no longer used, becauseKa-Ping Yee2008-03-171-13/+8
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-091-0/+1
* Fix issue1753: TextIOWrapper.write writes utf BOM for every string.Alexandre Vassalotti2008-01-071-4/+8
* Fix the reset() method of IncrementalNewlineDecoder toAlexandre Vassalotti2007-12-281-0/+1
* Added descriptor for builtins.open.__doc__Christian Heimes2007-12-081-0/+10
* Fix the rest of issue 1400, by introducing a proper implementation ofGuido van Rossum2007-12-061-6/+14
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-9/+27
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-1/+1
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-6/+6
* Oops, I missed this one again (test_univnewlines fails):Amaury Forgeot d'Arc2007-11-191-1/+1
* Issue1395: Universal mode used to duplicate newlines when using read(1).Amaury Forgeot d'Arc2007-11-191-89/+116
* seek() has to accept any int-like numberChristian Heimes2007-11-091-2/+4
* Fixed bug #1081: file.seek allows float argumentsChristian Heimes2007-11-081-0/+2
* Fixed #1403 where compileall and py_compile choked on an encoding header in a...Christian Heimes2007-11-081-0/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-14/+16
* Fix typo.Georg Brandl2007-10-301-1/+1
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-4/+9
* Patch 1330 by Christian Heimes (with some TLC applied by myself).Guido van Rossum2007-10-261-14/+4
* Patch # 1323 by Amaury Forgeot d'Arc.Guido van Rossum2007-10-251-2/+17
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-0/+12
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-5/+5
* Make the docstring for io.open() a raw string so that the explanation for theBrett Cannon2007-10-151-1/+1
* Remove self-referential import.Brett Cannon2007-10-111-2/+1
* In rseponse to bug# 1029, force the newline default for StringIO to "\n",Guido van Rossum2007-08-291-1/+1
* Insist that the argument to TextIOWrapper.write() is a basestringGuido van Rossum2007-08-291-0/+3
* Commit strict str/bytes distinction.Guido van Rossum2007-08-291-8/+5
* Changes to io.py and socket.py by Christian Heimes.Guido van Rossum2007-08-271-25/+57
* Make IOBase (and hence all other classes in io.py) use ABCMeta as its metaclass,Guido van Rossum2007-08-221-1/+2
* New I/O code from Tony Lownds implement newline feature correctly,Guido van Rossum2007-08-181-50/+160
* Fix test_wsgiref that used StringIO and a BufferedReader rather thanNeal Norwitz2007-08-111-1/+2
* Fall back to ascii if the locale module cannot be loaded.Martin v. Löwis2007-08-111-2/+7
* Set sys.stdout.encoding properly.Martin v. Löwis2007-08-111-2/+7