Fix assertion errors in debug build, brought on by PEP 308 patch.

This commit is contained in:
Thomas Wouters 2006-02-27 15:43:57 +00:00
parent 577b5b960d
commit fa443cda87
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ seq_for_testlist(struct compiling *c, const node *n)
return NULL;
for (i = 0; i < NCH(n); i += 2) {
REQ(CHILD(n, i), test);
assert(TYPE(CHILD(n, i)) == test || TYPE(CHILD(n, i)) == old_test);
expression = ast_for_expr(c, CHILD(n, i));
if (!expression)