From: Benjamin Peterson Date: Wed, 1 Jul 2009 23:45:19 +0000 (+0000) Subject: small optimization: avoid popping the current block until we have to X-Git-Tag: v2.7a1~858 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a3cf191f477f81cd14a28b2f7fdd3c7d9cfbd13;p=python small optimization: avoid popping the current block until we have to --- diff --git a/Python/ceval.c b/Python/ceval.c index f80778c090..ea4bd053c6 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2806,20 +2806,20 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) fast_block_end: while (why != WHY_NOT && f->f_iblock > 0) { - PyTryBlock *b = PyFrame_BlockPop(f); + /* Peek at the current block. */ + PyTryBlock *b = &f->f_blockstack[f->f_iblock - 1]; assert(why != WHY_YIELD); if (b->b_type == SETUP_LOOP && why == WHY_CONTINUE) { - /* For a continue inside a try block, - don't pop the block for the loop. */ - PyFrame_BlockSetup(f, b->b_type, b->b_handler, - b->b_level); why = WHY_NOT; JUMPTO(PyInt_AS_LONG(retval)); Py_DECREF(retval); break; } + /* Now we have to pop the block. */ + f->f_iblock--; + while (STACK_LEVEL() > b->b_level) { v = POP(); Py_XDECREF(v);