Issue #13783: the PEP 380 implementation no longer expands the public C API

This commit is contained in:
Nick Coghlan 2012-06-17 15:15:49 +10:00
parent 8d5c0b8c19
commit c40bc09942
6 changed files with 12 additions and 14 deletions

View file

@ -1852,7 +1852,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
PyObject *val;
x = POP(); /* Remove iter from stack */
Py_DECREF(x);
err = PyGen_FetchStopIterationValue(&val);
err = _PyGen_FetchStopIterationValue(&val);
if (err < 0) {
x = NULL;
break;