summaryrefslogtreecommitdiffstats
path: root/Modules/_fileio.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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