| Commit message (Expand) | Author | Age | Files | Lines |
* | Two more cases of switch(PySequence_Size()) without checking for case -1. | Neal Norwitz | 2002-09-18 | 1 | -0/+7 |
|
|
* | Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz). | Guido van Rossum | 2002-09-18 | 1 | -0/+3 |
|
|
* | A slight change to SET_LINENO-less tracing. | Michael W. Hudson | 2002-09-11 | 1 | -5/+18 |
|
|
* | missed this one on the previous multi-file checkin - see | Skip Montanaro | 2002-09-03 | 1 | -2/+0 |
|
|
* | Add a custom __str__ method to KeyError that applies repr() to the | Guido van Rossum | 2002-09-03 | 1 | -2/+40 |
|
|
* | Bump default check interval to 100 instructions. Computers are much faster | Skip Montanaro | 2002-09-03 | 1 | -2/+2 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 2 | -4/+9 |
|
|
* | expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456. | Skip Montanaro | 2002-09-03 | 1 | -0/+3 |
|
|
* | Check string for NULL before using it to format the error message. | Walter Dörwald | 2002-09-02 | 1 | -3/+6 |
|
|
* | Removed bogus PyUnicodeTranslateError_GetEncoding, as | Walter Dörwald | 2002-09-02 | 1 | -5/+0 |
|
|
* | Limit the length of attribute names in exception messages | Walter Dörwald | 2002-09-02 | 1 | -3/+3 |
|
|
* | PEP 293 implemention (from SF patch http://www.python.org/sf/432401) | Walter Dörwald | 2002-09-02 | 2 | -0/+1002 |
|
|
* | Because MWH changed the bytecode again, moved the magic number *back* | Guido van Rossum | 2002-08-31 | 1 | -1/+6 |
|
|
* | Further SET_LINENO reomval fixes. See comments in patch #587933. | Michael W. Hudson | 2002-08-30 | 2 | -37/+32 |
|
|
* | execfile should call PyErr_SetFromErrnoWithFilename instead of | Peter Schneider-Kamp | 2002-08-27 | 1 | -1/+1 |
|
|
* | Fix a couple of whitespace consistency nits. | Fred Drake | 2002-08-26 | 1 | -2/+2 |
|
|
* | Simplify, and avoid PyModule_GetDict() while we're at it. | Fred Drake | 2002-08-26 | 1 | -5/+2 |
|
|
* | The error messages in err_args() -- which is only called when the | Guido van Rossum | 2002-08-23 | 1 | -2/+2 |
|
|
* | Comment typo repair. | Michael W. Hudson | 2002-08-20 | 1 | -1/+1 |
|
|
* | My patch #597221. Use f_lasti more consistently. | Michael W. Hudson | 2002-08-20 | 1 | -9/+9 |
|
|
* | Add a warning comment to the LOAD_GLOBAL inline code. | Guido van Rossum | 2002-08-19 | 1 | -1/+3 |
|
|
* | Another ugly inlining hack, expanding the two PyDict_GetItem() calls | Guido van Rossum | 2002-08-19 | 1 | -1/+25 |
|
|
* | Inline fast_cfunction() in new call_function(). | Jeremy Hylton | 2002-08-16 | 1 | -55/+33 |
|
|
* | Move body of CALL_FUNCTION opcode into helper function. | Jeremy Hylton | 2002-08-16 | 1 | -54/+56 |
|
|
* | Streamline the fast track for CFunction calls a bit more: there was | Guido van Rossum | 2002-08-16 | 1 | -5/+2 |
|
|
* | A nice little speed-up for filter(): | Guido van Rossum | 2002-08-16 | 1 | -13/+17 |
|
|
* | Add warnings for arguments named None. All set. (I could add a | Guido van Rossum | 2002-08-16 | 1 | -1/+9 |
|
|
* | Add warning for None used as keyword argument name in function call. | Guido van Rossum | 2002-08-16 | 1 | -0/+1 |
|
|
* | Add warnings for assignment or deletion of variables and attributes | Guido van Rossum | 2002-08-16 | 1 | -0/+27 |
|
|
* | Minor cleanup of parsename() and parsestr(): the 'struct compiling *' | Guido van Rossum | 2002-08-16 | 1 | -13/+13 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 5 | -78/+199 |
|
|
* | provide less mysterious error messages when seeing end-of-line in | Skip Montanaro | 2002-08-15 | 1 | -0/+6 |
|
|
* | Py_InitModule4(): Accept NULL for the 'methods' argument. This makes | Fred Drake | 2002-08-14 | 1 | -14/+16 |
|
|
* | Added a FutureWarning for constructs that will change semantically in | Barry Warsaw | 2002-08-14 | 2 | -2/+10 |
|
|
* | Patch #550192: Set softspace to 0 in raw_input(). | Martin v. Löwis | 2002-08-14 | 1 | -18/+22 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -98/+5 |
|
|
* | Use PyErr_WarnExplicit() to warn about hex/oct constants, so the | Guido van Rossum | 2002-08-12 | 1 | -4/+9 |
|
|
* | Reset errno to zero after calling PyErr_Warn(). It can potentially do | Guido van Rossum | 2002-08-11 | 1 | -0/+1 |
|
|
* | Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. | Marc-André Lemburg | 2002-08-11 | 1 | -34/+1 |
|
|
* | Implement stage B0 of PEP 237: add warnings for operations that | Guido van Rossum | 2002-08-11 | 1 | -1/+9 |
|
|
* | Add weakref support generator-iterators. | Fred Drake | 2002-08-09 | 1 | -1/+7 |
|
|
* | Use Py_FatalError instead of abort. | Martin v. Löwis | 2002-08-07 | 1 | -2/+3 |
|
|
* | Fix PEP 263 code --without-unicode. Fixes #591943. | Martin v. Löwis | 2002-08-07 | 1 | -0/+10 |
|
|
* | get rid of GETNAMEV macro - use GETITEM directly | Skip Montanaro | 2002-08-06 | 1 | -12/+11 |
|
|
* | small speedup for constant and name access | Skip Montanaro | 2002-08-04 | 1 | -3/+6 |
|
|
* | Patch #534304: Implement phase 1 of PEP 263. | Martin v. Löwis | 2002-08-04 | 3 | -14/+143 |
|
|
* | SF patch #578297: | Andrew MacIntyre | 2002-08-04 | 1 | -7/+7 |
|
|
* | Added one call to Py_Main(), for OSX framework builds only, that will get the | Jack Jansen | 2002-08-02 | 1 | -0/+88 |
|
|
* | Whitespace normalization. | Thomas Heller | 2002-07-30 | 1 | -4/+4 |
|
|
* | Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). | Thomas Heller | 2002-07-30 | 1 | -6/+6 |
|
|