COMMITS
/ Python/compile.c August 8, 2001
G
Implement PEP 238 in its (almost) full glory.
Guido van Rossum committed
August 6, 2001
J
Another bug fix for recent import * warning (caught by Thomas Wouters)
Jeremy Hylton committed
J
Fix error message for import * in function/class scope
Jeremy Hylton committed
J
Fix SF bug [ #445474 ] warn about import * inside functions
Jeremy Hylton committed
July 16, 2001
G
jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base'
Guido van Rossum committed
T
Part way to allowing "from __future__ import generators" to communicate
Tim Peters committed
June 28, 2001
T
Another "if 0:" hack, this time to complain about otherwise invisible
Tim Peters committed
June 26, 2001
T
SF bug #436207: "if 0: yield x" is ignored.
Tim Peters committed
June 23, 2001
T
Change the semantics of "return" in generators, as discussed on the
Tim Peters committed
T
Disallow 'yield' in a 'try' block when there's a 'finally' clause.
Tim Peters committed
June 18, 2001
T
Merging the gen-branch into the main line, at Guido's direction. Yay!
Tim Peters committed
June 9, 2001
T
SF bug 430991: wrong co_lnotab
Tim Peters committed
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