COMMITS
/ Python/ceval.c August 23, 2001
G
When an inlined operation on two small ints causes overflow, don't
Guido van Rossum committed
August 18, 2001
G
Fix SF bug #443600:
Guido van Rossum committed
August 17, 2001
T
ceval, PyEval_MergeCompilerFlags: wasn't merging in the
Tim Peters committed
August 16, 2001
M
Patch #427190: Implement and use METH_NOARGS and METH_O.
Martin v. Löwis committed
August 12, 2001
J
Remove much dead code from ceval.c
Jeremy Hylton committed
August 10, 2001
J
Refactor future feature handling
Jeremy Hylton committed
August 8, 2001
G
Implement PEP 238 in its (almost) full glory.
Guido van Rossum committed
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 16, 2001
T
Part way to allowing "from __future__ import generators" to communicate
Tim Peters committed
July 12, 2001
N
GC for generator objects.
Neil Schemenauer committed
July 3, 2001
F
This change adjusts the profiling/tracing support so that the common
Fred Drake committed
June 27, 2001
F
Revise the interface to the profiling and tracing support for the
Fred Drake committed
June 26, 2001
T
gen_getattr: make the gi_running and gi_frame members discoverable (but
Tim Peters committed
T
Add "gi_" (generator-iterator) prefix to names of genobject members.
Tim Peters committed
June 23, 2001
T
Change the semantics of "return" in generators, as discussed on the
Tim Peters committed
T
gen_iternext(): Don't assume that the current thread state's frame is
Tim Peters committed
T
PyFrameObject: rename f_stackbottom to f_stacktop, since it points to
Tim Peters committed
June 21, 2001
T
Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into
Tim Peters committed
N
Try to avoid creating reference cycles involving generators. Only keep a
Neil Schemenauer committed
June 20, 2001
T
gen_iternext(): repair subtle refcount problem.
Tim Peters committed
N
Remove unused code.
Neil Schemenauer committed
June 18, 2001
T
Merging the gen-branch into the main line, at Guido's direction. Yay!
Tim Peters committed
June 16, 2001
F
Instead of initializing & interning the strings passed to the profile
Fred Drake committed
T
SF bug 433228: repr(list) woes when len(list) big
Tim Peters committed
June 8, 2001
F
call_trace(): Add an additional parameter -- pointer to a PyObject*
Fred Drake committed
May 29, 2001
J
Fix bug reported by Tim Peters on python-dev:
Jeremy Hylton committed
May 18, 2001
J
Add a second special case to the inline function call code in eval_code2().
Jeremy Hylton committed
May 5, 2001
T
Make PyIter_Next() a little smarter (wrt its knowledge of iterator
Tim Peters committed
April 27, 2001
J
improved error message-- names the type of the unexpected object
Jeremy Hylton committed
April 23, 2001
G
Mondo changes to the iterator stuff, without changing how Python code
Guido van Rossum committed
April 21, 2001
T
SF but #417587: compiler warnings compiling 2.1.
Tim Peters committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 13, 2001
J
Change error message raised when free variable is not yet bound. It
Jeremy Hylton committed
G
Patch by Ping (SF bug 415879, Exception.__init__() causes segfault):
Guido van Rossum committed
April 11, 2001
J
Fix exception handling for non-PyFunction objects, SF bug 414743.
Jeremy Hylton committed
March 22, 2001
J
Extend support for from __future__ import nested_scopes
Jeremy Hylton committed
J
If a code object is compiled with nested scopes, define the CO_NESTED flag.
Jeremy Hylton committed
March 21, 2001
G
Use PyObject_IsInstance() to check whether the first argument to an
Guido van Rossum committed
J
Fix PyFrame_FastToLocals() and counterpart to deal with cells and
Jeremy Hylton committed
March 13, 2001
J
Variety of small INC/DECREF patches that fix reported memory leaks
Jeremy Hylton committed
February 16, 2001
T
Remove trailing comma from 'why_code' enum, which was introduced by the
Thomas Wouters committed
February 9, 2001
J
When calling a PyCFunction that has METH_KEYWORDS defined, don't
Jeremy Hylton committed
February 5, 2001
J
SF patch 103596 by Nick Mathewson: rause UnboundLocalError for
Jeremy Hylton committed
February 1, 2001
J
Allow 'continue' inside 'try' clause
Jeremy Hylton committed
J
Undo recent change that banned using import to bind a global, as per
Jeremy Hylton committed
January 31, 2001
T
SF bug #130532: newest CVS won't build on AIX.
Tim Peters committed
January 29, 2001
J
Remove f_closure slot of frameobject and use f_localsplus instead.
Jeremy Hylton committed
January 25, 2001
J
PEP 227 implementation
Jeremy Hylton committed
January 19, 2001
J
clearer error messages for apply() and "no locals"
Jeremy Hylton committed
January 17, 2001
G
Rich comparisons fall-out:
Guido van Rossum committed