commit | c40bc09942f9532ed957dc8cd4da269ec089e830 | [log] [tgz] |
---|---|---|
author | Nick Coghlan <ncoghlan@gmail.com> | Sun Jun 17 15:15:49 2012 +1000 |
committer | Nick Coghlan <ncoghlan@gmail.com> | Sun Jun 17 15:15:49 2012 +1000 |
tree | f2596be6a738f230f6be4776f7f42d6925a3d747 | |
parent | 8d5c0b8c198374d0b88f30f04dd29d1f19c1c913 [diff] [blame] |
Issue #13783: the PEP 380 implementation no longer expands the public C API
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 @@ 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;