Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix two instances of empty argument lists, and fix style | Thomas Wouters | 2000-07-22 | 1 | -79/+78 |
| | | | | ('PyObject** x' -> 'PyObject **x') | ||||
* | 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 | -8/+9 |
| | |||||
* | Worm around MSVC6 error on single string literal > 2Kb. | Tim Peters | 2000-07-12 | 1 | -2/+7 |
| | |||||
* | Create two new exceptions: IndentationError and TabError. These are | Fred Drake | 2000-07-11 | 1 | -0/+17 |
| | | | | | | | used for indentation related errors. This patch includes Ping's improvements for indentation-related error messages. Closes SourceForge patches #100734 and #100856. | ||||
* | Exception__str__(): In case 1, be sure to decref the tmp local | Barry Warsaw | 2000-07-09 | 1 | -4/+8 |
| | | | | | variable. This crushes another memory leak. Slight rewrite included. | ||||
* | EnvironmentError__init__(): The two case clauses were missing | Barry Warsaw | 2000-07-09 | 1 | -3/+9 |
| | | | | | | | | `break's. This first missing break caused a memory leak when case 3 fell through case 2 in the following example: import os os.chmod('/missing', 0600) | ||||
* | init_exceptions(): Decref `doc' so it doesn't leak. | Barry Warsaw | 2000-07-01 | 1 | -0/+1 |
| | |||||
* | replace constant 1 with symbolic constant METH_VARARGS | Jeremy Hylton | 2000-06-30 | 1 | -9/+9 |
| | | | | another typo caught by Rob Hooft | ||||
* | mark SyntaxError__str__ as METH_VARARGS | Jeremy Hylton | 2000-06-20 | 1 | -1/+1 |
| | |||||
* | The standard exception classes. Moved here from ../Modules/_exceptions.c | Barry Warsaw | 2000-05-26 | 1 | -0/+994 |