COMMITS
/ Python/compile.c January 2, 2006
M
Adjust usage of compiler_use_new_block to its return type.
Martin v. Löwis committed
December 18, 2005
F
fixed compilation with an ordinary C89 compiler
Fredrik Lundh committed
N
Fix Armin's bug 1333982. He found it, he didn't created it :-)
Neal Norwitz committed
N
Handle more error conditions with SystemError
Neal Norwitz committed
N
Set MemoryError when alloc fails
Neal Norwitz committed
December 17, 2005
N
Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,
Neal Norwitz committed
December 6, 2005
N
Simplify logic for handling import *
Neal Norwitz committed
November 24, 2005
N
Fix a few more ref leaks. Backport candidate
Neal Norwitz committed
November 20, 2005
N
Fix a few more memory leaks
Neal Norwitz committed
November 19, 2005
N
Last batch of ref leaks in new AST code.
Neal Norwitz committed
November 16, 2005
N
Correctly handle identifiers for anonymous scopes and align genexpr name with symtable.c
Nick Coghlan committed
November 13, 2005
N
Fix a lot of memory and ref leaks in error paths.
Neal Norwitz committed
N
make internal method static
Neal Norwitz committed
October 25, 2005
N
Ensure that compiler_exit_scope() is called as necessary to free memory
Neil Schemenauer committed
October 23, 2005
N
Fix problem handling EXTENDED_ARGs from SF bug # 1333982
Neal Norwitz committed
N
N
Remove unnecessary local variable.
Neil Schemenauer committed
N
Fix private name mangling. The symtable also must do mangles so that
Neil Schemenauer committed
N
Use PyTuple_Pack instead of Py_BuildValue.
Neil Schemenauer committed
N
Fix arigo's funky LOAD_NAME bug: implicit globals inside classes have
Neil Schemenauer committed
N
Don't stop generating code for import statements after the first "import as"
Neil Schemenauer committed
October 21, 2005
N
Use <lamba> as the function name for lambdas (matches old compiler).
Neil Schemenauer committed
A
ANSI-C-ify the placement of local var declarations.
Armin Rigo committed
October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
August 3, 2005
T
com_yield_expr(): Squash new compiler wng about unreferenced local.
Tim Peters committed
August 2, 2005
P
PEP 342 implementation. Per Guido's comments, the generator throw()
Phillip J. Eby committed
June 25, 2005
B
Fix signedness of various char variables to stop causing a warning under gcc 4.
Brett Cannon committed
March 5, 2005
B
Allow classes to be defined with empty parentheses. This means that
Brett Cannon committed
March 3, 2005
B
Silence a gcc warning about putting in parentheses around && expressions mixed
Brett Cannon committed
February 23, 2005
R
Preserve sign of -0.0 when result is run through marshal.
Raymond Hettinger committed
February 21, 2005
R
Document how the pattern recognizer keeps all of its references in bounds.
Raymond Hettinger committed
February 20, 2005
R
Teach the peepholer to fold unary operations on constants.
Raymond Hettinger committed
February 10, 2005
R
Remove the set conversion which didn't work with: [] in (0,)
Raymond Hettinger committed
February 9, 2005
R
Have set conversion replace existing constant if not used elsewhere.
Raymond Hettinger committed
February 7, 2005
R
Adopt Skip's idea to optimize lists of constants in the context
Raymond Hettinger committed
February 6, 2005
R
Transform "x in (1,2,3)" to "x in frozenset([1,2,3])".
Raymond Hettinger committed
January 26, 2005
R
Do not fold a constant if a large sequence will result.
Raymond Hettinger committed
January 7, 2005
A
Re-running python with/without the -Qnew flag uses incorrectly optimized
Armin Rigo committed
January 2, 2005
R
Teach the peephole optimizer to fold simple constant expressions.
Raymond Hettinger committed
November 7, 2004
J
SF patch 1025636: Check for NULL returns in compile.c:com_import_stmt
Jeremy Hylton committed
November 2, 2004
R
Maintain peepholer's cumlc invariant by updating the running total
Raymond Hettinger committed
November 1, 2004
R
Simplify and future proof NOP counting in the peepholer.
Raymond Hettinger committed
October 30, 2004
A
Fixed a comment and added another one.
Armin Rigo committed
R
Adopt some peepholer suggestions from Armin Rigo:
Raymond Hettinger committed
October 26, 2004
R
SF bug #1053819: Segfault in tuple_of_constants
Raymond Hettinger committed
October 24, 2004
R
SF bug #1048870: call arg of lambda not updating
Raymond Hettinger committed
September 29, 2004
R
Improve error message for augmented assignments to genexps or listcomps.
Raymond Hettinger committed
R
Fix two erroneous error messages.
Raymond Hettinger committed
September 28, 2004
R
Replaced a test with an assertion.
Raymond Hettinger committed
September 22, 2004
R
SF patch #1031667: Fold tuples of constants into a single constant
Raymond Hettinger committed