summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
Commit message (Expand)AuthorAgeFilesLines
* Fix --disable-unicode compilation problems.Martin v. Löwis2002-11-211-0/+4
* Patch 594001: PEP 277 - Unicode file name support for Windows NT.Mark Hammond2002-10-031-13/+83
* Reflow long lines.Jeremy Hylton2002-08-141-26/+32
* Make readahead functions staticNeal Norwitz2002-08-061-5/+8
* SF patch 580331 by Oren Tirosh: make file objects their own iterator.Guido van Rossum2002-08-061-31/+130
* WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very fewTim Peters2002-07-141-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-3/+3
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-30/+36
* file_doc: Add some description of the U mode character, but only whenBarry Warsaw2002-05-221-0/+10
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-3/+1
* Py_UniversalNewlineFread(): small speed boost on non-Windows boxes.Tim Peters2002-04-211-3/+3
* Py_UniversalNewlineFread(): Many changes.Tim Peters2002-04-211-37/+47
* Mass checkin of universal newline support.Jack Jansen2002-04-141-17/+294
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* SF bug 538827: Python open w/ MSVC6: bad error msgs.Tim Peters2002-04-081-2/+15
* isatty() should return a bool.Guido van Rossum2002-04-071-1/+1
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-3/+3
* Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-011-2/+2
* Grow the string buffer at a mildly exponential rate for the getc versionNeil Schemenauer2002-03-231-13/+16
* Give Python a debug-mode pymalloc, much as sketched on Python-Dev.Tim Peters2002-03-231-8/+5
* Check in (hopefully) corrected version of last change.Neil Schemenauer2002-03-231-0/+29
* Undo last commit. It's causing the tests to file.Neil Schemenauer2002-03-221-28/+0
* Disallow open()ing of directories. Closes SF bug 487277.Neil Schemenauer2002-03-221-0/+28
* Patch #530105: Allow file object may to be subtypedMartin v. Löwis2002-03-151-11/+0
* Change Windows file.truncate() to (a) restore the original file position,Tim Peters2002-03-121-27/+40
* file_truncate(): provide full "large file" support on Windows, byTim Peters2002-03-111-20/+55
* OS/2 EMX port changes (Objects part of patch #450267):Andrew MacIntyre2002-02-261-0/+4
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* SF Patch #494863, file.xreadlines() should raise ValueError if file is closedNeal Norwitz2002-01-011-0/+2
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-301-2/+7
* PyFile_WriteString(): change prototype so that the string arg isTim Peters2001-11-281-1/+1
* open_the_file(): Explicitly set errno to 0 before calling fopen().Tim Peters2001-11-091-0/+1
* open_the_file(): this routine has a borrowed reference to the fileTim Peters2001-11-091-1/+0
* Fix SF buf #476953: Bad more for opening file gives bad msg.Jeremy Hylton2001-11-091-2/+6
* fix forMichael W. Hudson2001-10-311-2/+2
* SF patch #474175 (Jay T Miller): file.readinto arg parsing bugGuido van Rossum2001-10-231-1/+2
* Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's.Guido van Rossum2001-10-121-4/+11
* Rather gross workaround for a bug in the mac GUSI I/O library:Jack Jansen2001-10-101-1/+7
* Enable GC for new-style instances. This touches lots of files, sinceGuido van Rossum2001-10-051-3/+3
* Generalize file.writelines() to allow iterable objects.Tim Peters2001-09-231-31/+31
* Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum2001-09-201-2/+2
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-4/+7
* SF bug [#463093] File methods need doc strings.Tim Peters2001-09-201-14/+94
* Patch #462849: Pass Unicode objects to file's .write method.Martin v. Löwis2001-09-191-3/+8
* The end of [#460467] file objects should be subclassable.Tim Peters2001-09-141-30/+63
* Get rid of builtin_open() entirely (the C code and docstring, not theTim Peters2001-09-131-2/+2
* Now that file objects are subclassable, you can get at the file constructorTim Peters2001-09-131-0/+8
* SF bug [#460467] file objects should be subclassable.Tim Peters2001-09-131-23/+100
* _portable_fseek():Guido van Rossum2001-09-101-0/+6
* Enable large file support on Win32 systems.Tim Peters2001-09-061-1/+1