| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a second special case to the inline function call code in eval_code2(). | Jeremy Hylton | 2001-05-18 | 1 | -1/+7 |
|
|
* | Make PyIter_Next() a little smarter (wrt its knowledge of iterator | Tim Peters | 2001-05-05 | 1 | -5/+3 |
|
|
* | improved error message-- names the type of the unexpected object | Jeremy Hylton | 2001-04-27 | 1 | -2/+3 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -27/+16 |
|
|
* | SF but #417587: compiler warnings compiling 2.1. | Tim Peters | 2001-04-21 | 1 | -1/+0 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+41 |
|
|
* | Change error message raised when free variable is not yet bound. It | Jeremy Hylton | 2001-04-13 | 1 | -10/+16 |
|
|
* | Patch by Ping (SF bug 415879, Exception.__init__() causes segfault): | Guido van Rossum | 2001-04-13 | 1 | -3/+2 |
|
|
* | Fix exception handling for non-PyFunction objects, SF bug 414743. | Jeremy Hylton | 2001-04-11 | 1 | -16/+54 |
|
|
* | Extend support for from __future__ import nested_scopes | Jeremy Hylton | 2001-03-22 | 1 | -2/+16 |
|
|
* | If a code object is compiled with nested scopes, define the CO_NESTED flag. | Jeremy Hylton | 2001-03-22 | 1 | -1/+9 |
|
|
* | Use PyObject_IsInstance() to check whether the first argument to an | Guido van Rossum | 2001-03-21 | 1 | -13/+19 |
|
|
* | Fix PyFrame_FastToLocals() and counterpart to deal with cells and | Jeremy Hylton | 2001-03-21 | 1 | -4/+45 |
|
|
* | Variety of small INC/DECREF patches that fix reported memory leaks | Jeremy Hylton | 2001-03-13 | 1 | -4/+7 |
|
|
* | Remove trailing comma from 'why_code' enum, which was introduced by the | Thomas Wouters | 2001-02-16 | 1 | -1/+1 |
|
|
* | When calling a PyCFunction that has METH_KEYWORDS defined, don't | Jeremy Hylton | 2001-02-09 | 1 | -10/+0 |
|
|
* | SF patch 103596 by Nick Mathewson: rause UnboundLocalError for | Jeremy Hylton | 2001-02-05 | 1 | -0/+16 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -4/+24 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -5/+3 |
|
|
* | SF bug #130532: newest CVS won't build on AIX. | Tim Peters | 2001-01-31 | 1 | -2/+0 |
|
|
* | Remove f_closure slot of frameobject and use f_localsplus instead. | Jeremy Hylton | 2001-01-29 | 1 | -4/+16 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -12/+77 |
|
|
* | clearer error messages for apply() and "no locals" | Jeremy Hylton | 2001-01-19 | 1 | -7/+12 |
|
|
* | Rich comparisons fall-out: | Guido van Rossum | 2001-01-17 | 1 | -148/+147 |
|
|
* | This patch makes sure that the function name always appears in the error | Ka-Ping Yee | 2001-01-15 | 1 | -29/+54 |
|
|
* | Two changes to from...import: | Guido van Rossum | 2001-01-12 | 1 | -30/+54 |
|
|
* | Fixed bugs noted by Greg Stein | Moshe Zadka | 2001-01-11 | 1 | -0/+2 |
|
|
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 1 | -27/+17 |
|
|
* | Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug | Charles G. Waldman | 2001-01-10 | 1 | -3/+6 |
|
|
* | When a PyCFunction that takes only positional parameters is called with | Fred Drake | 2001-01-04 | 1 | -18/+19 |
|
|
* | Revised implementation of CALL_FUNCTION and friends. | Jeremy Hylton | 2001-01-03 | 1 | -296/+429 |
|
|
* | Fix for SF bug #117241 | Jeremy Hylton | 2000-10-30 | 1 | -1/+15 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -29/+48 |
|
|
* | Do a better job at staying on-screen :P (Sorry, it's late here.) I'm | Thomas Wouters | 2000-10-11 | 1 | -1/+2 |
|
|
* | Adjust debugging code in the implementation of the DUP_TOPX bytecode, use | Thomas Wouters | 2000-10-11 | 1 | -5/+1 |
|
|
* | Remove the last gcc -Wall warning about possible use of an uninitialized | Fred Drake | 2000-10-11 | 1 | -0/+1 |
|
|
* | Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg, | Tim Peters | 2000-10-11 | 1 | -31/+61 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -6/+0 |
|
|
* | This patch adds a new Python C API called PyString_AsStringAndSize() | Marc-André Lemburg | 2000-09-19 | 1 | -6/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Cosmetics on Py_Get/SetRecursionLimit (for the style guide) | Vladimir Marangozov | 2000-09-01 | 1 | -2/+4 |
|
|
* | Revert removal of void from function definition. Guido sez I can take it | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | Set the recursion limit to 1000 -- 2500 was not enough, let's be | Guido van Rossum | 2000-09-01 | 1 | -1/+1 |
|
|
* | Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler ... | Tim Peters | 2000-09-01 | 1 | -1/+1 |
|
|
* | add user-modifiable recursion_limit | Jeremy Hylton | 2000-08-31 | 1 | -5/+15 |
|
|
* | Better error message with UnboundLocalError | Paul Prescod | 2000-08-30 | 1 | -11/+39 |
|
|
* | eval_code2(): Guido provides this patch for his suggested elaboration | Barry Warsaw | 2000-08-29 | 1 | -2/+2 |
|
|
* | Replace the run-time 'future-bytecode-stream-inspection' hack to find out | Thomas Wouters | 2000-08-27 | 1 | -55/+1 |
|
|
* | Charles Waldman's patch to reinitialize the interpreter lock after a | Guido van Rossum | 2000-08-27 | 1 | -0/+19 |
|
|
* | Support for three-token characters (**=, >>=, <<=) which was written by | Thomas Wouters | 2000-08-24 | 1 | -4/+201 |
|
|