Cleanup: comments (long lines) in python

This commit is contained in:
2019-04-29 19:59:13 +10:00
parent c7f67d60fb
commit 778542fd8f
23 changed files with 182 additions and 90 deletions

View File

@@ -45,7 +45,8 @@ Py_LOCAL_INLINE(PyObject *) Py_INCREF_RET(PyObject *op)
return op;
}
/* append & transfer ownership to the list, avoids inline Py_DECREF all over (which is quite a large macro) */
/* Append & transfer ownership to the list,
* avoids inline Py_DECREF all over (which is quite a large macro). */
Py_LOCAL_INLINE(int) PyList_APPEND(PyObject *op, PyObject *v)
{
int ret = PyList_Append(op, v);