Lines Matching refs:lasti
2670 PyObject *lasti = PEEK(oparg + 1);
2671 if (PyLong_Check(lasti)) {
2672 frame->prev_instr = first_instr + PyLong_AsLong(lasti);
2676 assert(PyLong_Check(lasti));
2677 _PyErr_SetString(tstate, PyExc_SystemError, "lasti is not an int");
4440 - THIRD: lasti of exception in exc_info()
5771 int level, handler, lasti;
5772 if (get_exception_handler(frame->f_code, offset, &level, &handler, &lasti) == 0) {
5796 if (lasti) {
5798 PyObject *lasti = PyLong_FromLong(frame_lasti);
5799 if (lasti == NULL) {
5802 PUSH(lasti);
6087 get_exception_handler(PyCodeObject *code, int index, int *level, int *handler, int *lasti)
6128 *lasti = depth_and_lasti & 1;