summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
Commit message (Expand)AuthorAgeFilesLines
* Move distributed and duplicated config for stat() and fstat() into pyport.h.Tim Peters2001-01-181-20/+0
* Rationalizing the fallback code for portable fseek -- this is all muchGuido van Rossum2001-01-161-26/+12
* Speed getline_via_fgets(), by supplying two "fast paths", although one isTim Peters2001-01-151-54/+81
* Use the "MS" getline hack (fgets()) by default on non-get_unlockedTim Peters2001-01-151-30/+47
* Jeff Epler's patch adding an xreadlines() method. (It just importsGuido van Rossum2001-01-091-1/+25
* Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when definingGuido van Rossum2001-01-091-1/+1
* A few reformats; no logic changes.Tim Peters2001-01-081-9/+8
* Let's hope that three time's a charm...Guido van Rossum2001-01-081-3/+3
* Fiddled ms_getline_hack after talking w/ Guido: made clearer that theTim Peters2001-01-081-65/+67
* MS Win32 .readline() speedup, as discussed on Python-Dev. This is a trickyTim Peters2001-01-071-15/+184
* Tim noticed that I had botched get_line_raw(). Looking again, IGuido van Rossum2001-01-071-47/+30
* Restructured get_line() for clarity and speed.Guido van Rossum2001-01-051-66/+59
* Make the indentation consistently use tabs instead of using spaces justFred Drake2000-12-201-3/+3
* Patch #102868 from cgw: fix memory leak when an EOF is encounteredAndrew M. Kuchling2000-12-191-0/+3
* Only use getline() when compiling using glibcAndrew M. Kuchling2000-11-301-1/+1
* Patch #102469: Use glibc's getline() extension when reading unbounded linesAndrew M. Kuchling2000-11-291-3/+30
* Added _HAVE_BSDI and __APPLE__ to the list of platforms that require aGuido van Rossum2000-11-131-1/+1
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-3/+3
* Donn Cave <donn@oz.net>:Fred Drake2000-10-061-0/+2
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-4/+0
* Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems.Guido van Rossum2000-09-211-2/+6
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Peter Schneider-Kamp <nowonder@nowonder.de>:Fred Drake2000-08-311-7/+3
* Fixed a serious typo.Marc-André Lemburg2000-08-251-1/+1
* Fix to bug [ Bug #111860 ] file.writelines() crashes.Marc-André Lemburg2000-08-251-9/+34
* Added include for limits.hJack Jansen2000-08-221-0/+4
* Add largefile support for Linux64 and WIn64. Add test_largefile and some minorTrent Mick2000-08-111-37/+145
* Added PyObject_AsFileDescriptor, which checks for integer, long integer,Andrew M. Kuchling2000-07-131-0/+58
* ANSI-fication of the sources.Fred Drake2000-07-091-85/+30
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-3/+3
* Fix to bug #389:Marc-André Lemburg2000-07-051-4/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-2/+2
* Jack Jansen: Moved includes to the top, removed think C supportGuido van Rossum2000-06-281-18/+20
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* Checking in the new, improve file.writelines() code.Guido van Rossum2000-03-131-24/+78
* Many changes for Unicode, by Marc-Andre Lemburg.Guido van Rossum2000-03-101-1/+7
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-5/+5
* Patch by Mark Hammond to avoid certain header files on Windows/CE.Guido van Rossum1999-08-271-1/+10
* casts for picky compilers.Guido van Rossum1999-04-101-1/+1
* Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int.Guido van Rossum1999-01-141-1/+5
* Need to include <sys/types.h> for off_t.Guido van Rossum1999-01-071-0/+2
* Changes for long file support by Steve Clift.Guido van Rossum1999-01-061-11/+53
* Fix two places (seek and truncate) where a cascade of PyArg_ParseGuido van Rossum1999-01-041-11/+9
* As noted by Per Cederqvist, new_buffersize() sometimes returns theGuido van Rossum1998-12-111-2/+11
* PyFile_FromString(): If an exception occurs, pass in the filename thatBarry Warsaw1998-07-231-1/+2
* Ugly band-aid to work around a bug in Linux ftell().Guido van Rossum1998-05-051-1/+3
* Enable ftruncate() on the Mac.Guido van Rossum1998-04-281-0/+6
* Clear the error condition set by ftell().Guido van Rossum1998-04-271-0/+2