summaryrefslogtreecommitdiff
path: root/Modules/_fileio.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* truncate() returns the new size and position.Guido van Rossum2007-04-101-4/+10
* Implement long positioning (Unix only, probably).Guido van Rossum2007-04-101-130/+146
* Make it possible to instantiate a _FileIO() with an integer file descriptorGuido van Rossum2007-04-081-18/+50
* Add a missing forward declaration for PyFileIO_Type. The _fileio module now c...Collin Winter2007-03-081-0/+2
* Check in Daniel Stutzbach's _fileio.c and test_fileio.pyGuido van Rossum2007-03-081-0/+713