Backed out changeset 99c34e47348b

The change broke test_gdb.
This commit is contained in:
Victor Stinner 2016-12-09 18:51:13 +01:00
parent 22f18750a5
commit 59a73276e9
2 changed files with 3 additions and 3 deletions

View file

@ -186,7 +186,7 @@ gen_send_ex(PyGenObject *gen, PyObject *arg, int exc, int closing)
f->f_back = tstate->frame;
gen->gi_running = 1;
result = tstate->interp->eval_frame(f, exc);
result = PyEval_EvalFrameEx(f, exc);
gen->gi_running = 0;
/* Don't keep the reference to f_back any longer than necessary. It