Cleanup: comments (long lines) in python
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user