summaryrefslogtreecommitdiffstats
path: root/Objects/fileobject.c
Commit message (Expand)AuthorAgeFilesLines
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...Kristján Valur Jónsson2007-04-261-8/+7
* SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomizeThomas Wouters2007-01-231-0/+2
* Bug #1067760: Deprecate passing floats to file.seek.Martin v. Löwis2006-11-121-4/+17
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-2/+6
* Make sure memory is properly cleaned up in file_init.Brett Cannon2006-08-311-1/+1
* Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-devNeal Norwitz2006-08-211-1/+1
* Stop INCREFing name, then checking if it's NULL. name (f_name) should neverNeal Norwitz2006-07-171-3/+6
* Handle a NULL name properly.Neal Norwitz2006-07-161-3/+3
* Fix build problems with the platform SDK on windows. It is not sufficient to...Kristján Valur Jónsson2006-07-031-1/+1
* Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CR...Kristján Valur Jónsson2006-06-121-1/+3
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-101-2/+2
* Bug #1502805: don't alias file.__exit__ to file.close since theGeorg Brandl2006-06-081-1/+18
* Bug #1462152: file() now checks more thoroughly for invalid modeGeorg Brandl2006-05-181-35/+48
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-5/+0
* SF #1479181: split open() and file() from being aliases for each other.Neal Norwitz2006-05-021-4/+0
* Replace INT_MAX with PY_SSIZE_T_MAX where string lengthMartin v. Löwis2006-04-131-4/+4
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+9
* More C++-compliance. Note especially listobject.c - to get C++ to accept theAnthony Baxter2006-04-111-5/+6
* Bug #1177964: make file iterator raise MemoryError on too big filesGeorg Brandl2006-03-311-1/+2
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-301-1/+1
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-26/+1
* Updates to the with-statement:Guido van Rossum2006-02-281-3/+37
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-14/+19
* SF patch #1397960: When mixing file-iteration andThomas Wouters2006-02-121-2/+39
* strlen() returns a size_t, get rid of 64-bit warningNeal Norwitz2006-01-081-1/+1
* Revert r41662 and the part of 41552 that originally caused the problemNeal Norwitz2005-12-151-7/+0
* Add a workaround for file.ftell() to raise IOError for ttys.Hye-Shik Chang2005-12-131-0/+7
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-3/+4
* Disallow opening files with modes 'aU' or 'wU' as specified by PEPSkip Montanaro2005-05-201-0/+51
* If close() fails in file_dealloc, then print an error message toPeter Astrand2004-11-071-1/+8
* 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