lb20309 发表于 2017-5-7 07:16:57

lost on Py_DECREF/INCREF when handling PyList_Append in Python C extension

The main hint is in the docs, if it says 'Steals a reference' than the function basically takes ownership, if it says 'New Reference' than it did an INCREF for you, if nothing is said it probably does an INCREF and DECREF pair as needed.

http://stackoverflow.com/questions/10863669/lost-on-py-decref-incref-when-handling-pylist-append-in-python-c-extension
页: [1]
查看完整版本: lost on Py_DECREF/INCREF when handling PyList_Append in Python C extension