--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cgen/templates/default/pop_except Thu Apr 26 11:08:47 2012 -0700 @@ -0,0 +1,13 @@ + + TARGET(POP_EXCEPT) + { + PyTryBlock *b = PyFrame_BlockPop(f); + if (b->b_type != EXCEPT_HANDLER) { + PyErr_SetString(PyExc_SystemError, + "popped block is not an except handler"); + why = WHY_EXCEPTION; + goto on_error;; + } + UNWIND_EXCEPT_HANDLER(b); + } + DISPATCH();