COMMITS
/ Python/compile.c March 2, 2006
N
Fix refleak if from __future__ import was not first
Neal Norwitz committed
N
Update known issues to reflect reality
Neal Norwitz committed
March 1, 2006
M
Patch #1440601: Add col_offset attribute to AST nodes.
Martin v. Löwis committed
J
Tabify and reflow some long lines.
Jeremy Hylton committed
February 28, 2006
T
Generally inehrit codeflags that are in PyCF_MASK, instead of writing it out
Thomas Wouters committed
T
from __future__ import with_statement addon for 'with', mostly written by
Thomas Wouters committed
T
SF patch #1438387, PEP 328: relative and absolute imports.
Thomas Wouters committed
February 27, 2006
T
Clarify C-style exception handling with proper label name.
Thomas Wouters committed
T
Fix assertions.
Thomas Wouters committed
G
PEP 343 -- the with-statement.
Guido van Rossum committed
T
PEP 308 implementation, including minor refdocs and some testcases. It
Thomas Wouters committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
January 7, 2006
N
Fix icc warnings: single bit fields should be unsigned, shadowing local variables
Neal Norwitz committed
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