Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add test for eval() w/ free variables. | Jeremy Hylton | 2002-04-20 | 1 | -0/+1 |
| | | | | Related to SF bug #505315 | ||||
* | Update output generated by test_scope | Jeremy Hylton | 2001-12-13 | 1 | -1/+1 |
| | |||||
* | Add test for local assigned to only in a nested list comp | Jeremy Hylton | 2001-10-18 | 1 | -0/+1 |
| | |||||
* | Fix for SF bug [ #443866 ] Evaluating func_code causing core dump | Jeremy Hylton | 2001-07-30 | 1 | -0/+1 |
| | | | | Add test that calls eval with a code object that has free variables. | ||||
* | SF patch 419176 from MvL; fixed bug 418977 | Jeremy Hylton | 2001-05-08 | 1 | -0/+1 |
| | | | | Two errors in dict_to_map() helper used by PyFrame_LocalsToFast(). | ||||
* | Fix 2.1 nested scopes crash reported by Evan Simpson | Jeremy Hylton | 2001-04-27 | 1 | -0/+1 |
| | | | | | | | | The new test case demonstrates the bug. Be more careful in symtable_resolve_free() to add a var to cells or frees only if it won't be added under some other rule. XXX Add new assertion that will catch this bug. | ||||
* | Add tests for recent changes: | Jeremy Hylton | 2001-03-21 | 1 | -0/+2 |
| | | | | | - global stmt in class does not affect free vars in methods - locals() works with free and cell vars | ||||
* | Add test to verify that nested functions with free variables don't | Jeremy Hylton | 2001-03-13 | 1 | -0/+1 |
| | | | | cause the free variables to leak. | ||||
* | Test interaction of global and nested scopes -- thanks to Samuele Pedroni. | Guido van Rossum | 2001-03-01 | 1 | -0/+1 |
| | |||||
* | update test cases for recent compiler changes: exec/import * in nested | Jeremy Hylton | 2001-02-09 | 1 | -0/+1 |
| | | | | functinos and cell vars with */** parameters | ||||
* | Fix test 9 (caught by ?!ng) | Jeremy Hylton | 2001-02-05 | 1 | -0/+1 |
| | | | | Add tests for unbound locals (Nick Mathewson) | ||||
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+13 |
New tests cases for nested scopes. |