COMMITS
/ Python/compile.c May 9, 2001
T
SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup
Tim Peters committed
May 8, 2001
J
Several small changes. Mostly reformatting, adding parens.
Jeremy Hylton committed
April 27, 2001
J
Fix 2.1 nested scopes crash reported by Evan Simpson
Jeremy Hylton committed
April 20, 2001
G
Iterators phase 1. This comprises:
Guido van Rossum committed
April 14, 2001
G
Make some private symbols static.
Guido van Rossum committed
April 9, 2001
J
Warn when assigning to __debug__ instead of raising an error.
Jeremy Hylton committed
March 23, 2001
J
Make it illegal to assign to __debug__ as per Guido's request.
Jeremy Hylton committed
March 22, 2001
J
Set the line number correctly for a nested function with an exec or
Jeremy Hylton committed
J
Make error messages clearer for illegal combinations of nested
Jeremy Hylton committed
J
If a code object is compiled with nested scopes, define the CO_NESTED flag.
Jeremy Hylton committed
March 21, 2001
J
Update PyNode_CompileSymtable() to understand future statements
Jeremy Hylton committed
J
Fix PyFrame_FastToLocals() and counterpart to deal with cells and
Jeremy Hylton committed
March 20, 2001
J
Fixup handling of free variables in methods when the class scope also
Jeremy Hylton committed
March 19, 2001
J
Fix crashes in nested list comprehensions
Jeremy Hylton committed
March 2, 2001
G
Refactored the warning-issuing code more.
Guido van Rossum committed
March 1, 2001
J
Useful future statement support for the interactive interpreter
Jeremy Hylton committed
J
Fix core dump in example from Samuele Pedroni:
Jeremy Hylton committed
J
Don't add global names to st->st_global if we're already iterating
Jeremy Hylton committed
February 28, 2001
J
undo introduction of st_global_star
Jeremy Hylton committed
J
Warn about global statement at the module level.
Jeremy Hylton committed
J
Add warning/error handlin for problematic nested scopes cases as
Jeremy Hylton committed
G
Let's have some sanity. Introduce a helper to issue a symbol table
Guido van Rossum committed
G
Use the new PyErr_WarnExplicit() API to issue better warnings for
Guido van Rossum committed
J
Improve SyntaxErrors for bad future statements. Set file and location
Jeremy Hylton committed
J
Print the offending line of code in the traceback for SyntaxErrors
Jeremy Hylton committed
J
Presumed correct compiler pass for future statements
Jeremy Hylton committed
February 27, 2001
J
Improved __future__ parser; still more to do
Jeremy Hylton committed
J
Add warnings about undefined "global"
Jeremy Hylton committed
J
Preliminary support for future nested scopes
Jeremy Hylton committed
February 23, 2001
T
Shuffle premature decref; nuke unreachable code block.
Tim Peters committed
B
symtable_update_free_vars(), symtable_undo_free(),
Barry Warsaw committed
J
Fix for bug 133489: compiler leaks memory
Jeremy Hylton committed
February 19, 2001
J
Fix for implicit tuple + default arguments, courtesy of Michael Hudson.
Jeremy Hylton committed
J
When running python -O, do not include blocks defined in asserts in
Jeremy Hylton committed
J
Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510.
Jeremy Hylton committed
February 18, 2001
T
Bug #132313 error message confusing for assignment in lambda.
Tim Peters committed
February 17, 2001
T
Change temp names created by listcomps from [%d] to _[%d], so the one-liner
Tim Peters committed
February 12, 2001
J
In symtable_update_free_vars() do not modify the dictionary while
Jeremy Hylton committed
February 9, 2001
J
SF patch 103589: Fix handling of cell vars that are either * or ** parameters.
Jeremy Hylton committed
J
Relax the rules for using 'from ... import *' and exec in the presence
Jeremy Hylton committed
G
Reindent a function that was somehow indented by 7 spaces. Also did a
Guido van Rossum committed
February 2, 2001
J
Fix symbol table pass to generation SyntaxError exceptions that
Jeremy Hylton committed
J
Move a bunch of definitions that were internal to compile.c to
Jeremy Hylton committed
J
add missing DECREF (thanks, Barry)
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 30, 2001
J
Enforce two illegal import statements that were outlawed in the
Jeremy Hylton committed
January 29, 2001
J
plug leak detected by Barry
Jeremy Hylton committed
January 25, 2001
J
PEP 227 implementation
Jeremy Hylton committed
J
Fix bug reported by Ka-Ping Yee: The compiler botched parsing function
Jeremy Hylton committed