| Commit message (Expand) | Author | Age | Files | Lines |
* | This change adjusts the profiling/tracing support so that the common | Fred Drake | 2001-07-03 | 1 | -47/+65 |
|
|
* | Revise the interface to the profiling and tracing support for the | Fred Drake | 2001-06-27 | 1 | -134/+65 |
|
|
* | gen_getattr: make the gi_running and gi_frame members discoverable (but | Tim Peters | 2001-06-26 | 1 | -4/+17 |
|
|
* | Add "gi_" (generator-iterator) prefix to names of genobject members. | Tim Peters | 2001-06-26 | 1 | -9/+13 |
|
|
* | Change the semantics of "return" in generators, as discussed on the | Tim Peters | 2001-06-23 | 1 | -0/+7 |
|
|
* | gen_iternext(): Don't assume that the current thread state's frame is | Tim Peters | 2001-06-23 | 1 | -2/+2 |
|
|
* | PyFrameObject: rename f_stackbottom to f_stacktop, since it points to | Tim Peters | 2001-06-23 | 1 | -5/+5 |
|
|
* | Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into | Tim Peters | 2001-06-21 | 1 | -32/+38 |
|
|
* | Try to avoid creating reference cycles involving generators. Only keep a | Neil Schemenauer | 2001-06-21 | 1 | -14/+27 |
|
|
* | gen_iternext(): repair subtle refcount problem. | Tim Peters | 2001-06-20 | 1 | -0/+5 |
|
|
* | Remove unused code. | Neil Schemenauer | 2001-06-20 | 1 | -9/+0 |
|
|
* | Merging the gen-branch into the main line, at Guido's direction. Yay! | Tim Peters | 2001-06-18 | 1 | -257/+419 |
|
|
* | Instead of initializing & interning the strings passed to the profile | Fred Drake | 2001-06-16 | 1 | -26/+42 |
|
|
* | SF bug 433228: repr(list) woes when len(list) big | Tim Peters | 2001-06-16 | 1 | -2/+3 |
|
|
* | call_trace(): Add an additional parameter -- pointer to a PyObject* | Fred Drake | 2001-06-08 | 1 | -13/+36 |
|
|
* | Fix bug reported by Tim Peters on python-dev: | Jeremy Hylton | 2001-05-29 | 1 | -6/+5 |
|
|
* | 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 |
|
|