summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
Commit message (Expand)AuthorAgeFilesLines
* dump HAVE_FOPENRF stuff - obsoleteSkip Montanaro2004-06-111-26/+19
* Add weakref support to array.array and file objects.Raymond Hettinger2004-05-311-2/+5
* If a file is opened with an explicit buffer size >= 1, repeatedAndrew MacIntyre2004-04-041-0/+2
* Changed file.name to be the object passed as the 'name' argument to file()Nicholas Bastin2004-03-211-17/+21
* PyFile_WriteObject(): some of the local variables are only used whenFred Drake2004-03-191-0/+2
* Remove support for --without-universal-newlines (see PEP 11).Skip Montanaro2004-02-071-35/+0
* Getting rid of code dependent on GUSI or the MetroWerks compiler.Jack Jansen2003-11-191-28/+0
* Patch #809535: Mention behaviour of seek on text files. Backported to 2.3.Martin v. Löwis2003-10-181-1/+3
* Simplify and speedup uses of Py_BuildValue():Raymond Hettinger2003-10-121-2/+2
* Only release buffer after file has been closed. Fixes #800824.Martin v. Löwis2003-09-071-1/+1
* SF bug 801631: file.truncate fault on windows.Tim Peters2003-09-071-74/+66
* Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize().Martin v. Löwis2003-09-041-5/+19
* Fix SF #789402, Memory leak on open()Neal Norwitz2003-08-151-0/+1
* Only encode Unicode objects when printing them raw.Martin v. Löwis2003-05-181-1/+2
* Patch #612627: Add encoding attribute to file objects, and determineMartin v. Löwis2003-05-101-1/+41
* Somewhere along the way, the softspace attr of file objects became read-Tim Peters2003-05-041-1/+2
* SF patch #683187, fix universal newline problems on errorNeal Norwitz2003-02-091-1/+4
* Allow PyFile_GetLine() to return Unicode objects. Fixes #660165.Martin v. Löwis2003-01-031-1/+24
* SF patch #659536: Use PyArg_UnpackTuple where possible.Raymond Hettinger2002-12-291-1/+1
* * Objects/fileobject.cGustavo Niemeyer2002-12-171-1/+1
* Fixed bugGustavo Niemeyer2002-12-161-3/+30
* Patch #650834: Document 'U' in file mode, remove stale variables.Martin v. Löwis2002-12-111-5/+1
* 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