| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' | Guido van Rossum | 2001-07-16 | 1 | -0/+1 | 
| *  | Part way to allowing "from __future__ import generators" to communicate | Tim Peters | 2001-07-16 | 1 | -4/+13 | 
| *  | Another "if 0:" hack, this time to complain about otherwise invisible | Tim Peters | 2001-06-28 | 1 | -2/+61 | 
| *  | SF bug #436207:  "if 0: yield x" is ignored. | Tim Peters | 2001-06-26 | 1 | -1/+33 | 
| *  | Change the semantics of "return" in generators, as discussed on the | Tim Peters | 2001-06-23 | 1 | -25/+10 | 
| *  | Disallow 'yield' in a 'try' block when there's a 'finally' clause. | Tim Peters | 2001-06-23 | 1 | -0/+10 | 
| *  | Merging the gen-branch into the main line, at Guido's direction.  Yay! | Tim Peters | 2001-06-18 | 1 | -9/+51 | 
| *  | SF bug 430991: wrong co_lnotab | Tim Peters | 2001-06-09 | 1 | -10/+54 | 
| *  | SF patch #416249, from Mark Favas:  2.1c1 compile: unused vrbl cleanup | Tim Peters | 2001-05-09 | 1 | -2/+0 | 
| *  | Several small changes.  Mostly reformatting, adding parens. | Jeremy Hylton | 2001-05-08 | 1 | -10/+11 | 
| *  | Fix 2.1 nested scopes crash reported by Evan Simpson | Jeremy Hylton | 2001-04-27 | 1 | -6/+20 | 
| *  | Iterators phase 1.  This comprises: | Guido van Rossum | 2001-04-20 | 1 | -18/+6 | 
| *  | Make some private symbols static. | Guido van Rossum | 2001-04-14 | 1 | -1/+2 | 
| *  | Warn when assigning to __debug__ instead of raising an error. | Jeremy Hylton | 2001-04-09 | 1 | -7/+2 | 
| *  | Make it illegal to assign to __debug__ as per Guido's request. | Jeremy Hylton | 2001-03-23 | 1 | -1/+12 | 
| *  | Set the line number correctly for a nested function with an exec or | Jeremy Hylton | 2001-03-22 | 1 | -2/+5 | 
| *  | Make error messages clearer for illegal combinations of nested | Jeremy Hylton | 2001-03-22 | 1 | -15/+36 | 
| *  | If a code object is compiled with nested scopes, define the CO_NESTED flag. | Jeremy Hylton | 2001-03-22 | 1 | -0/+2 | 
| *  | Update PyNode_CompileSymtable() to understand future statements | Jeremy Hylton | 2001-03-21 | 1 | -9/+15 | 
| *  | Fix PyFrame_FastToLocals() and counterpart to deal with cells and | Jeremy Hylton | 2001-03-21 | 1 | -51/+69 | 
| *  | Fixup handling of free variables in methods when the class scope also | Jeremy Hylton | 2001-03-20 | 1 | -3/+12 | 
| *  | Fix crashes in nested list comprehensions | Jeremy Hylton | 2001-03-19 | 1 | -8/+10 | 
| *  | Refactored the warning-issuing code more. | Guido van Rossum | 2001-03-02 | 1 | -11/+17 | 
| *  | Useful future statement support for the interactive interpreter | Jeremy Hylton | 2001-03-01 | 1 | -11/+27 | 
| *  | Fix core dump in example from Samuele Pedroni: | Jeremy Hylton | 2001-03-01 | 1 | -15/+31 | 
| *  | Don't add global names to st->st_global if we're already iterating | Jeremy Hylton | 2001-03-01 | 1 | -6/+15 | 
| *  | undo introduction of st_global_star | Jeremy Hylton | 2001-02-28 | 1 | -3/+0 | 
| *  | Warn about global statement at the module level. | Jeremy Hylton | 2001-02-28 | 1 | -2/+17 | 
| *  | Add warning/error handlin for problematic nested scopes cases as | Jeremy Hylton | 2001-02-28 | 1 | -26/+119 | 
| *  | Let's have some sanity.  Introduce a helper to issue a symbol table | Guido van Rossum | 2001-02-28 | 1 | -16/+17 | 
| *  | Use the new PyErr_WarnExplicit() API to issue better warnings for | Guido van Rossum | 2001-02-28 | 1 | -12/+21 | 
| *  | Improve SyntaxErrors for bad future statements.  Set file and location | Jeremy Hylton | 2001-02-28 | 1 | -84/+6 | 
| *  | Print the offending line of code in the traceback for SyntaxErrors | Jeremy Hylton | 2001-02-28 | 1 | -31/+96 | 
| *  | Presumed correct compiler pass for future statements | Jeremy Hylton | 2001-02-28 | 1 | -4/+30 | 
| *  | Improved __future__ parser; still more to do | Jeremy Hylton | 2001-02-27 | 1 | -43/+5 | 
| *  | Add warnings about undefined "global" | Jeremy Hylton | 2001-02-27 | 1 | -0/+29 | 
| *  | Preliminary support for future nested scopes | Jeremy Hylton | 2001-02-27 | 1 | -114/+269 | 
| *  | Shuffle premature decref; nuke unreachable code block. | Tim Peters | 2001-02-23 | 1 | -9/+3 | 
| *  | symtable_update_free_vars(), symtable_undo_free(), | Barry Warsaw | 2001-02-23 | 1 | -3/+3 | 
| *  | Fix for bug 133489: compiler leaks memory | Jeremy Hylton | 2001-02-23 | 1 | -2/+6 | 
| *  | Fix for implicit tuple + default arguments, courtesy of Michael Hudson. | Jeremy Hylton | 2001-02-19 | 1 | -1/+3 | 
| *  | When running python -O, do not include blocks defined in asserts in | Jeremy Hylton | 2001-02-19 | 1 | -0/+11 | 
| *  | Tolerate ill-formed trees in symtable_assign().  Fixes SF bug 132510. | Jeremy Hylton | 2001-02-19 | 1 | -5/+8 | 
| *  | Bug #132313 error message confusing for assignment in lambda. | Tim Peters | 2001-02-18 | 1 | -1/+8 | 
| *  | Change temp names created by listcomps from [%d] to _[%d], so the one-liner | Tim Peters | 2001-02-17 | 1 | -2/+2 | 
| *  | In symtable_update_free_vars() do not modify the dictionary while | Jeremy Hylton | 2001-02-12 | 1 | -7/+27 | 
| *  | SF patch 103589: Fix handling of cell vars that are either * or ** parameters. | Jeremy Hylton | 2001-02-09 | 1 | -8/+15 | 
| *  | Relax the rules for using 'from ... import *' and exec in the presence | Jeremy Hylton | 2001-02-09 | 1 | -297/+112 | 
| *  | Reindent a function that was somehow indented by 7 spaces.  Also did a | Guido van Rossum | 2001-02-09 | 1 | -15/+15 | 
| *  | Fix symbol table pass to generation SyntaxError exceptions that | Jeremy Hylton | 2001-02-02 | 1 | -32/+46 |