COMMITS
/ Python/compile.c June 21, 2004
R
Install two code generation optimizations that depend on NOP.
Raymond Hettinger committed
June 8, 2004
M
Patch #774665: Make Python LC_NUMERIC agnostic.
Martin v. Löwis committed
May 19, 2004
R
SF patch #872326: Generator expression implementation
Raymond Hettinger committed
March 22, 2004
A
Fix for line events in the case:
Armin Rigo committed
March 21, 2004
R
Improve byte coding for multiple assignments.
Raymond Hettinger committed
March 7, 2004
R
SF patch #910929: Optimize list comprehensions
Raymond Hettinger committed
November 29, 2003
G
- Removed FutureWarnings related to hex/oct literals and conversions
Guido van Rossum committed
October 18, 2003
M
Patch #792869: Clarify error message for parameters declared global,
Martin v. Löwis committed
October 12, 2003
R
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger committed
September 22, 2003
J
Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error.
Jeremy Hylton committed
September 16, 2003
R
Improve the leak fix so that PyTuple_New is only called when needed.
Raymond Hettinger committed
September 15, 2003
R
Fix leak discovered in test_new by Michael Hudson.
Raymond Hettinger committed
August 28, 2003
J
Fix for SF bug [ 784075 ] Fatal Python error: unknown scope
Jeremy Hylton committed
July 15, 2003
J
SF patch 763201: handling of SyntaxErrors in symbol table build
Jeremy Hylton committed
June 20, 2003
R
Removed bytecode transformation for sequence packing/unpacking.
Raymond Hettinger committed
May 22, 2003
N
SF bug #644345, Poor error message for augmented assign
Neal Norwitz committed
J
Use macro to get length of list.
Jeremy Hylton committed
J
Remove comment with very long lines that explained what the code used
Jeremy Hylton committed
May 21, 2003
J
Fix for SF [ 734869 ] Lambda functions in list comprehensions
Jeremy Hylton committed
May 12, 2003
T
cmp_type(): The grammar stopped allowing '=' as a comparison operator
Tim Peters committed
May 10, 2003
M
Patch #734231: Update RiscOS support. In particular, correct
Martin v. Löwis committed
May 3, 2003
M
Patch #708604: Check more function results. Will backport to 2.2.
Martin v. Löwis committed
April 29, 2003
M
Use Tim's suggestion to fix
Michael W. Hudson committed
April 24, 2003
R
Revert the previous enhancement to the bytecode optimizer.
Raymond Hettinger committed
April 22, 2003
R
Improved the bytecode optimizer.
Raymond Hettinger committed
April 15, 2003
R
Extend SF patch #707257: Improve code generation
Raymond Hettinger committed
March 28, 2003
R
Factored out test for absolute jumps.
Raymond Hettinger committed
March 26, 2003
R
SF patch #707257: Improve code generation
Raymond Hettinger committed
March 24, 2003
T
symtable_cellvar_offsets(): This leaked references to little integers
Tim Peters committed
February 12, 2003
G
SF #660455 : patch by NNorwitz.
Guido van Rossum committed
February 10, 2003
J
patch #683515: "Add unicode support to compile(), eval() and exec"
Just van Rossum committed
February 5, 2003
J
Small function call optimization and special build option for call stats.
Jeremy Hylton committed
January 16, 2003
M
A. Lloyd Flanagan pointed out a spelling error on c.l.py.
Michael W. Hudson committed
December 31, 2002
J
SF patch [ 597919 ] compiler package and SET_LINENO
Jeremy Hylton committed
December 23, 2002
G
Oops. Roll back that last change. It wasn't ready for release. :-(
Guido van Rossum committed
G
Add warning for assignment to None, True and False. This is patch
Guido van Rossum committed
December 18, 2002
N
SF # 654960, remove unnecessary static variable
Neal Norwitz committed
December 16, 2002
G
Fixing bug
Gustavo Niemeyer committed
December 11, 2002
M
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis committed
November 21, 2002
W
Move three variables that are only used inside an if block into the block,
Walter Dörwald committed
October 3, 2002
M
Clamp code objects' tp_compare result to [-1, 1].
Michael W. Hudson committed
August 30, 2002
M
Further SET_LINENO reomval fixes. See comments in patch #587933.
Michael W. Hudson committed
August 16, 2002
G
Add warnings for arguments named None. All set. (I could add a
Guido van Rossum committed
G
Add warning for None used as keyword argument name in function call.
Guido van Rossum committed
G
Add warnings for assignment or deletion of variables and attributes
Guido van Rossum committed
G
Minor cleanup of parsename() and parsestr(): the 'struct compiling *'
Guido van Rossum committed
August 15, 2002
M
This is my patch
Michael W. Hudson committed
August 14, 2002
B
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw committed
M
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis committed
August 12, 2002
G
Use PyErr_WarnExplicit() to warn about hex/oct constants, so the
Guido van Rossum committed