summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index b3ec013..7e9318b 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -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;