Commit 1291f1f5 authored by Stefan Behnel's avatar Stefan Behnel

Merge branch '0.22.x'

parents 81bbfd9f 38c4c7dd
...@@ -161,7 +161,7 @@ static int __Pyx_PyGen_FetchStopIterationValue(PyObject **pvalue) { ...@@ -161,7 +161,7 @@ static int __Pyx_PyGen_FetchStopIterationValue(PyObject **pvalue) {
PyObject* args = __Pyx_PyObject_GetAttrStr(ev, PYIDENT("args")); PyObject* args = __Pyx_PyObject_GetAttrStr(ev, PYIDENT("args"));
Py_DECREF(ev); Py_DECREF(ev);
if (likely(args)) { if (likely(args)) {
value = PyObject_GetItem(args, 0); value = PySequence_GetItem(args, 0);
Py_DECREF(args); Py_DECREF(args);
} }
if (unlikely(!value)) { if (unlikely(!value)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment