Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add test for a list comprehension that is nested in the left-hand part | Jeremy Hylton | 2001-03-19 | 1 | -0/+1 |
| | | | | | | | | | of another list comp. This caused crashes reported as SF bugs 409230 and 407800. Note that the new tests are in a function so that the name lookup code isn't affected by how many *other* list comprehensions are in the same scope. | ||||
* | Add simple section for assert, including assert w/ lambdas | Jeremy Hylton | 2001-02-19 | 1 | -0/+1 |
| | |||||
* | Add test for syntax error on "x = 1 + 1". | Jeremy Hylton | 2001-02-19 | 1 | -5/+0 |
| | | | | Move check_syntax() function into test_support. | ||||
* | update test cases for recent compiler changes: exec/import * in nested | Jeremy Hylton | 2001-02-09 | 1 | -1/+0 |
| | | | | functinos and cell vars with */** parameters | ||||
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 1 | -0/+2 |
| | | | | SF patch 102989 by Thomas Wouters | ||||
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -1/+0 |
| | | | | | | | | | | | discussion on python-dev. 'from mod import *' is still banned except at the module level. Fix value for special NOOPT entry in symtable. Initialze to 0 instead of None, so that later uses of PyInt_AS_LONG() are valid. (Bug reported by Donn Cave.) replace local REPR macros with PyObject_REPR in object.h | ||||
* | add test for illegal imports | Jeremy Hylton | 2001-01-30 | 1 | -0/+2 |
| | |||||
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+2 |
| | | | | | test_new: new.code() noew takes two more arguments test_grammer: Add a bunch of test cases for lambda (not really PEP 227 related) | ||||
* | add extra tests to verify that co_varnames is being set up properly | Jeremy Hylton | 2001-01-25 | 1 | -2/+4 |
| | | | | | also normalize checks for syntax errors and delete commented out definition of verify. | ||||
* | Add simple test of list comprehension that uses a name that isn't | Jeremy Hylton | 2001-01-23 | 1 | -0/+1 |
| | | | | | otherwise used in the same code block. (Not sure this is the right place, but there is no test_list_comprehensions.py.) | ||||
* | Added tests of "print >> None" | Barry Warsaw | 2000-08-29 | 1 | -0/+1 |
| | |||||
* | require list comprehensions to start with a for clause | Skip Montanaro | 2000-08-22 | 1 | -0/+1 |
| | |||||
* | PEP 214, Extended print Statement, has been accepted by the BDFL. | Barry Warsaw | 2000-08-21 | 1 | -0/+4 |
| | | | | Additional test cases for the extended print form. | ||||
* | list comprehensions. see | Skip Montanaro | 2000-08-12 | 1 | -0/+7 |
| | | | | | | http://sourceforge.net/patch/?func=detailpatch&patch_id=100654&group_id=5470 for details. | ||||
* | fix previous checkin | Jeremy Hylton | 2000-03-28 | 1 | -23/+0 |
| | |||||
* | add test cases for Greg Ewing's extended call syntax patch | Jeremy Hylton | 2000-03-28 | 1 | -0/+24 |
| | |||||
* | Test output files in their new location | Barry Warsaw | 1996-12-10 | 1 | -0/+46 |