Commit 5ede4238 authored by Stefan Behnel's avatar Stefan Behnel

merge

parents 324666bc 2137696b
......@@ -5141,7 +5141,7 @@ static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
if (likely(PyList_CheckExact(L))) {
if (PyList_Append(L, x) < 0) return NULL;
Py_INCREF(Py_None);
return Py_None; // this is just to have an accurate signature
return Py_None; /* this is just to have an accurate signature */
}
else {
PyObject *r, *m;
......
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