| Commit message (Expand) | Author | Age | Files | Lines |
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | SF bug 538827: Python open w/ MSVC6: bad error msgs. | Tim Peters | 2002-04-08 | 1 | -2/+15 |
|
|
* | isatty() should return a bool. | Guido van Rossum | 2002-04-07 | 1 | -1/+1 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -3/+3 |
|
|
* | Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. | Neal Norwitz | 2002-04-01 | 1 | -2/+2 |
|
|
* | Grow the string buffer at a mildly exponential rate for the getc version | Neil Schemenauer | 2002-03-23 | 1 | -13/+16 |
|
|
* | Give Python a debug-mode pymalloc, much as sketched on Python-Dev. | Tim Peters | 2002-03-23 | 1 | -8/+5 |
|
|
* | Check in (hopefully) corrected version of last change. | Neil Schemenauer | 2002-03-23 | 1 | -0/+29 |
|
|
* | Undo last commit. It's causing the tests to file. | Neil Schemenauer | 2002-03-22 | 1 | -28/+0 |
|
|
* | Disallow open()ing of directories. Closes SF bug 487277. | Neil Schemenauer | 2002-03-22 | 1 | -0/+28 |
|
|
* | Patch #530105: Allow file object may to be subtyped | Martin v. Löwis | 2002-03-15 | 1 | -11/+0 |
|
|
* | Change Windows file.truncate() to (a) restore the original file position, | Tim Peters | 2002-03-12 | 1 | -27/+40 |
|
|
* | file_truncate(): provide full "large file" support on Windows, by | Tim Peters | 2002-03-11 | 1 | -20/+55 |
|
|
* | OS/2 EMX port changes (Objects part of patch #450267): | Andrew MacIntyre | 2002-02-26 | 1 | -0/+4 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -4/+0 |
|
|
* | SF Patch #494863, file.xreadlines() should raise ValueError if file is closed | Neal Norwitz | 2002-01-01 | 1 | -0/+2 |
|
|
* | Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the | Jack Jansen | 2001-11-30 | 1 | -2/+7 |
|
|
* | PyFile_WriteString(): change prototype so that the string arg is | Tim Peters | 2001-11-28 | 1 | -1/+1 |
|
|
* | open_the_file(): Explicitly set errno to 0 before calling fopen(). | Tim Peters | 2001-11-09 | 1 | -0/+1 |
|
|
* | open_the_file(): this routine has a borrowed reference to the file | Tim Peters | 2001-11-09 | 1 | -1/+0 |
|
|
* | Fix SF buf #476953: Bad more for opening file gives bad msg. | Jeremy Hylton | 2001-11-09 | 1 | -2/+6 |
|
|
* | fix for | Michael W. Hudson | 2001-10-31 | 1 | -2/+2 |
|
|
* | SF patch #474175 (Jay T Miller): file.readinto arg parsing bug | Guido van Rossum | 2001-10-23 | 1 | -1/+2 |
|
|
* | Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. | Guido van Rossum | 2001-10-12 | 1 | -4/+11 |
|
|
* | Rather gross workaround for a bug in the mac GUSI I/O library: | Jack Jansen | 2001-10-10 | 1 | -1/+7 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -3/+3 |
|
|
* | Generalize file.writelines() to allow iterable objects. | Tim Peters | 2001-09-23 | 1 | -31/+31 |
|
|
* | Add optional docstrings to getset descriptors. Fortunately, there's | Guido van Rossum | 2001-09-20 | 1 | -2/+2 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 1 | -4/+7 |
|
|
* | SF bug [#463093] File methods need doc strings. | Tim Peters | 2001-09-20 | 1 | -14/+94 |
|
|
* | Patch #462849: Pass Unicode objects to file's .write method. | Martin v. Löwis | 2001-09-19 | 1 | -3/+8 |
|
|
* | The end of [#460467] file objects should be subclassable. | Tim Peters | 2001-09-14 | 1 | -30/+63 |
|
|
* | Get rid of builtin_open() entirely (the C code and docstring, not the | Tim Peters | 2001-09-13 | 1 | -2/+2 |
|
|
* | Now that file objects are subclassable, you can get at the file constructor | Tim Peters | 2001-09-13 | 1 | -0/+8 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -23/+100 |
|
|
* | _portable_fseek(): | Guido van Rossum | 2001-09-10 | 1 | -0/+6 |
|
|
* | Enable large file support on Win32 systems. | Tim Peters | 2001-09-06 | 1 | -1/+1 |
|
|
* | Changes to automatically enable large file support on some systems. | Guido van Rossum | 2001-09-05 | 1 | -12/+20 |
|
|
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -7/+5 |
|
|
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 1 | -33/+20 |
|
|
* | Apply anonymous SF patch #441229. | Guido van Rossum | 2001-08-09 | 1 | -0/+6 |
|
|
* | Remove spurious "closed" attribute definition from the memberlist | Guido van Rossum | 2001-08-06 | 1 | -1/+0 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -27/+18 |
|
|
* | Kill more warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 1 | -1/+1 |
|
|
* | file_getiter(): make iter(file) be equivalent to file.xreadlines(). | Guido van Rossum | 2001-05-22 | 1 | -12/+3 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -0/+1 |
|
|
* | Oops, forgot to merge this from the iter-branch to the trunk. | Guido van Rossum | 2001-04-21 | 1 | -9/+37 |
|
|
* | Make some private symbols static. | Guido van Rossum | 2001-04-14 | 1 | -2/+2 |
|
|
* | Two improvements to large file support: | Guido van Rossum | 2001-03-01 | 1 | -30/+18 |
|
|
* | Move distributed and duplicated config for stat() and fstat() into pyport.h. | Tim Peters | 2001-01-18 | 1 | -20/+0 |
|
|