Handle/ignore the py3k POP_EXCEPT op.

This commit is contained in:
Darryl Pogue
2011-10-01 21:50:24 -07:00
parent 12c019e5e5
commit 8cbff72f08

View File

@@ -922,6 +922,9 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
curblock->append(tmp.cast<ASTNode>());
}
break;
case Pyc::POP_EXCEPT:
/* Do nothing. */
break;
case Pyc::POP_TOP:
{
PycRef<ASTNode> value = stack.top();