summaryrefslogtreecommitdiff
path: root/Lib/io.py
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-0/+5
* Make sure socket.close() doesn't interfere with socket.makefile().Jeremy Hylton2007-08-031-28/+0
* Fix the minidom test.Guido van Rossum2007-07-271-3/+5
* Delete redundant read() and close() methods from SocketIO class.Guido van Rossum2007-07-271-24/+0
* Make close() (all versions) ignore IOError from flush().Guido van Rossum2007-07-221-4/+11
* SF patch# 1757683 by Alexandre Vassalotti. Add support forGuido van Rossum2007-07-211-0/+5
* Set closed flag *after* calling flush().Guido van Rossum2007-07-101-2/+4
* Add proper tests for closed files to various I/O operations,Guido van Rossum2007-07-101-4/+21
* Made test_file pass. This meant adding support for read(-1) and read()Guido van Rossum2007-07-101-35/+56
* Make test_socket work.Guido van Rossum2007-06-081-7/+13
* Accellerate binary readline() a bit.Guido van Rossum2007-06-071-8/+14
* tokenizer.c: make coding markup work again.Guido van Rossum2007-06-071-2/+1
* Remove debug print.Walter Dörwald2007-05-291-1/+0
* Fix typo.Walter Dörwald2007-05-291-1/+2
* Add isatty() to TextIOWrapper.Guido van Rossum2007-05-271-0/+3
* Add an encoding property to TextIOBase instances.Guido van Rossum2007-05-241-0/+9