Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use METH_VARARGS instead of numeric constant 1 in method def. tables | Andrew M. Kuchling | 2000-08-03 | 1 | -1/+2 |
| | |||||
* | ANSIfy some more forward declarations. | Thomas Wouters | 2000-07-24 | 1 | -1/+1 |
| | |||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | replace PyXXX_Length calls with PyXXX_Size calls | Jeremy Hylton | 2000-07-12 | 1 | -1/+1 |
| | |||||
* | Fixed docstring typo, reported by Skip Montanaro <skip@mojam.com>. | Fred Drake | 2000-06-19 | 1 | -1/+1 |
| | |||||
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -5/+5 |
| | | | | | | | | | | For more comments, read the patches@python.org archives. For documentation read the comments in mymalloc.h and objimpl.h. (This is not exactly what Vladimir posted to the patches list; I've made a few changes, and Vladimir sent me a fix in private email for a problem that only occurs in debug mode. I'm also holding back on his change to main.c, which seems unnecessary to me.) | ||||
* | raise TypeError when bad argument passed to cStringIO.StringIO | Jeremy Hylton | 2000-04-12 | 1 | -4/+10 |
| | |||||
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 1 | -7/+7 |
| | | | | PyArg_ParseTuple() format string arguments as possible. | ||||
* | New version from Jim: don't call Py_FatalError() when initialization fails. | Guido van Rossum | 1999-06-15 | 1 | -5/+2 |
| | |||||
* | The writelines() function was never tested and contained numerous bugs | Guido van Rossum | 1999-02-08 | 1 | -4/+16 |
| | | | | | | (including a docstring saying "blah"). Fixed all this. (Please review for potential memory leaks!) | ||||
* | Jim Fulton writes: | Guido van Rossum | 1998-12-15 | 1 | -42/+73 |
| | | | | | This fixes a bug that can cause core dumps when doing seeks in input StringIO objects. This has a number of other clean-ups. | ||||
* | Add DL_EXPORT() to all modules that could possibly be used | Guido van Rossum | 1998-12-04 | 1 | -1/+1 |
| | | | | on BeOS or Windows. | ||||
* | New version from Jim Fulton: | Guido van Rossum | 1998-11-25 | 1 | -71/+69 |
| | | | | | | | - New copyright. (Open source) - Fixed problem in seek method. The seek method should (and now does) fill with nulls when seeking past the end of the "file". | ||||
* | Use 'S' format character for the optional constructor argument, so we | Guido van Rossum | 1998-07-24 | 1 | -1/+1 |
| | | | | | get a decent error message when it's not a string (instead of confusing errors when trying to use the thing). | ||||
* | I_getattr(), | Fred Drake | 1998-07-17 | 1 | -1/+7 |
| | | | | | O_getattr(): Added read-only access to the closed attribute, based on comment from Michael Scharf <Michael.Scharf@Rhein-Neckar.de>. | ||||
* | Module docstring indicated seek() isn't implemented, but it is. | Fred Drake | 1998-04-11 | 1 | -1/+1 |
| | |||||
* | New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1 | Guido van Rossum | 1997-12-04 | 1 | -99/+15 |
| | | | | distribution. | ||||
* | #Plug small memory leaks in constructors. | Guido van Rossum | 1997-09-03 | 1 | -2/+7 |
| | |||||
* | Fix the bug Jeremy was experiencing: both the close() and the | Guido van Rossum | 1997-09-03 | 1 | -4/+19 |
| | | | | | | | | | | | dealloc() functions contained code to free/DECREF the buffer (there were differences between I and O objects but the logic bug was the same). Fixed this be setting the buffer pointer to NULL and testing for that. (This also makes it safe to call close() more than once.) XXX Worry: what if you try to read() or write() once the thing is closed? | ||||
* | cPickle release 0.3 from Jim Fulton | Guido van Rossum | 1997-08-13 | 1 | -120/+118 |
| | |||||
* | My own patch: support writable 'softspace' attribute. | Guido van Rossum | 1997-04-11 | 1 | -2/+23 |
| | |||||
* | Unknown changes by Jim Fulton. | Guido van Rossum | 1997-04-09 | 1 | -199/+140 |
| | |||||
* | Quieted gcc -Wall by removing unused local variables. | Barry Warsaw | 1997-01-14 | 1 | -5/+9 |
| | | | | | Suppressing my urge to reformat according to Python coding standards! :-) | ||||
* | Jim's latest version. | Guido van Rossum | 1997-01-06 | 1 | -90/+129 |
| | |||||
* | Jim F's brainchild | Guido van Rossum | 1996-12-05 | 1 | -0/+678 |