summaryrefslogtreecommitdiffstats
path: root/Modules/_fileio.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #5016: FileIO.seekable() could return False if the file positionAntoine Pitrou2009-03-131-6/+8
* The error detection code in FileIO.close() could fail to reflect the `errno` ...Antoine Pitrou2009-03-131-3/+1
* FileIO.readinto() isn't going anywhereBenjamin Peterson2009-03-051-1/+1
* Fix failures introduced by buggy merge (1)Antoine Pitrou2009-03-041-13/+27
* merge the io-c branch: C implementation of the io moduleBenjamin Peterson2009-03-041-109/+121
* Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,...Benjamin Peterson2009-02-131-1/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 68835 via svnmerge fromAntoine Pitrou2009-01-211-0/+13
* Fix typoAntoine Pitrou2009-01-201-1/+1
* fix compiler warningBenjamin Peterson2009-01-191-1/+1
* Merged revisions 68755 via svnmerge fromBenjamin Peterson2009-01-191-0/+20
* Merged revisions 68134 via svnmerge fromHirokazu Yamamoto2009-01-011-3/+4
* Merged revisions 68016 via svnmerge fromBenjamin Peterson2008-12-291-4/+4
* Fix an issue in the tokenizer, where a file is opened by fd, but the underlyi...Kristján Valur Jónsson2008-12-181-14/+16
* Fixed issue #4533: File read operation was dreadfully slowChristian Heimes2008-12-051-4/+27
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-221-3/+5
* Fixed issue #4233.Christian Heimes2008-11-051-4/+9
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv...Benjamin Peterson2008-11-031-1/+1
* Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ...Christian Heimes2008-10-301-2/+4
* Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-...Benjamin Peterson2008-09-021-1/+3
* Merged revisions 66018 via svnmerge fromNeal Norwitz2008-08-241-1/+1
* Merged revisions 66006 via svnmerge fromNeal Norwitz2008-08-241-0/+1
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-6/+9
* Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,...Georg Brandl2008-07-161-1/+0
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+17
* Renamed PyString to PyBytesChristian Heimes2008-05-261-9/+9
* Added fast alternate io.BytesIO implementation and its test suite.Alexandre Vassalotti2008-05-061-48/+16
* Merged revisions 61520,61523-61528,61532 via svnmerge fromChristian Heimes2008-03-181-8/+0
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-8/+8
* Issue1395: Universal mode used to duplicate newlines when using read(1).Amaury Forgeot d'Arc2007-11-191-1/+1
* Fixed bug #1081: file.seek allows float argumentsChristian Heimes2007-11-081-0/+4
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-9/+9
* Fixed bug in _fileio.c and test_pep277. On Windows IOError.filename was not s...Christian Heimes2007-10-311-0/+4
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-9/+27
* Patch 1330 by Christian Heimes (with some TLC applied by myself).Guido van Rossum2007-10-261-3/+22
* Remove a bogus comment based on the code above.Neal Norwitz2007-08-161-2/+0
* Cleanup a little.Neal Norwitz2007-08-121-31/+34
* Py_ssize_t requires "n" format, this fixes most of the 64-bit only failures.Neal Norwitz2007-08-081-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Second part of sf# 1752225: On windows, emulate ftruncate with Win32Thomas Heller2007-07-121-4/+37
* First part of sf# 1752225: Support for wide filenames on Windows.Thomas Heller2007-07-121-9/+12
* See SF# 1751801: Windows: Add the _fileio builtin module, and undefineThomas Heller2007-07-111-1/+7
* Made test_file pass. This meant adding support for read(-1) and read()Guido van Rossum2007-07-101-7/+70
* Fix a buch of shallow test failures.Guido van Rossum2007-06-181-1/+1
* Use O_APPEND flag instead of seeking, when appendWalter Dörwald2007-06-061-12/+5
* If append mode is specified seek to the end of the file.Walter Dörwald2007-06-061-0/+12
* Remove native popen() and fdopen(), replacing them with subprocess calls.Guido van Rossum2007-05-241-0/+6
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-2/+2
* Make a few more tests pass with the new I/O library.Guido van Rossum2007-04-121-12/+9