COMMITS
/ Python/ceval.c 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
January 15, 2001
K
This patch makes sure that the function name always appears in the error
Ka-Ping Yee committed
January 12, 2001
G
Two changes to from...import:
Guido van Rossum committed
January 11, 2001
M
Fixed bugs noted by Greg Stein
Moshe Zadka committed
M
Implementation of PEP-0217.
Moshe Zadka committed
January 10, 2001
C
Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug
Charles G. Waldman committed
January 4, 2001
F
When a PyCFunction that takes only positional parameters is called with
Fred Drake committed
January 3, 2001
J
Revised implementation of CALL_FUNCTION and friends.
Jeremy Hylton committed
October 30, 2000
J
Fix for SF bug #117241
Jeremy Hylton committed
October 24, 2000
F
Ka-Ping Yee <ping@lfw.org>:
Fred Drake committed
October 11, 2000
T
Do a better job at staying on-screen :P (Sorry, it's late here.) I'm
Thomas Wouters committed
T
Adjust debugging code in the implementation of the DUP_TOPX bytecode, use
Thomas Wouters committed
F
Remove the last gcc -Wall warning about possible use of an uninitialized
Fred Drake committed
T
Attempt to fix bogus gcc -Wall warnings reported by Marc-Andre Lemburg,
Tim Peters committed
September 26, 2000
F
Rationalize use of limits.h, moving the inclusion to Python.h.
Fred Drake committed
September 19, 2000
M
This patch adds a new Python C API called PyString_AsStringAndSize()
Marc-André Lemburg committed
September 1, 2000
G
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum committed
V
Cosmetics on Py_Get/SetRecursionLimit (for the style guide)
Vladimir Marangozov committed
T
Revert removal of void from function definition. Guido sez I can take it
Tim Peters committed
G
Set the recursion limit to 1000 -- 2500 was not enough, let's be
Guido van Rossum committed
T
Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler wngs;
Tim Peters committed
August 31, 2000
J
add user-modifiable recursion_limit
Jeremy Hylton committed
August 30, 2000
P
Better error message with UnboundLocalError
Paul Prescod committed
August 29, 2000
B
eval_code2(): Guido provides this patch for his suggested elaboration
Barry Warsaw committed
August 27, 2000
T
Replace the run-time 'future-bytecode-stream-inspection' hack to find out
Thomas Wouters committed
G
Charles Waldman's patch to reinitialize the interpreter lock after a
Guido van Rossum committed
August 24, 2000
T
Support for three-token characters (**=, >>=, <<=) which was written by
Thomas Wouters committed
F
Charles G. Waldman <cgw@fnal.gov>:
Fred Drake committed
August 21, 2000
B
PEP 214, Extended print Statement, has been accepted by the BDFL.
Barry Warsaw committed
August 20, 2000
T
Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn't
Thomas Wouters committed
August 18, 2000
F
Remove a couple of warnings turned up by "gcc -Wall".
Fred Drake committed
August 17, 2000
T
Apply SF patch #101135, adding 'import module as m' and 'from module import
Thomas Wouters committed
August 11, 2000
T
Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they
Thomas Wouters committed