私は最初のCエクステンションをPythonに書いていますが、リファレンスカウントについて混乱しています。ここに私がやろうとしていることがあります。Python Cエクステンションのリファレンスカウント
私はループの中に辞書を移入:
mydict = PyDict_New();
for (...)
{
pair = PyTuple_Pack(2, PyString_FromString("some string"),
PyString_FromString("some other string"));
/* at this point, the refcnt for the tuple is 1, the refcnts for the
2 string items are 2. Because according to the source, PyString_FromString
does an INCREF, and PyTuple_Pack() does an INCREF on its items
*/
PyDict_SetItem(mydict, PyString_FromString("some key"), pair);
/* At this point, the key's refcnt is 2. PyString_FromString sets it to 1 and
PyDict_SetItem INCREF's it. Ditto for pair since PyDict_SetItem also INCREF's
the value.
*/
Py_DECREF(pair);
/* pair's refcnt is 1 which makes sense to me since mydict now owns the tuple,
but the refcnt for its items are still at 2. I don't understand this part.
*/
}
return mydict;
は正しい私の参照カウントはありますか? C APIドキュメントでは、PyObject_FromXXX
関数をPyTuple_SetItem
またはPyList_SetItem
への引数として使用することが特に推奨されています。
PyDict_SetItem
が参照を盗むのかどうかは記載されていません。私は右アム、それが、その場合、 に私は
first = PyString_FromString("some string");
second = PyString_FromString("some other string");
pair = PyTuple_Pack(2, first, second);
Py_DECREF(second);
Py_DECREF(first);
を行う必要はありません推測していますか?
この質問は関連すると思われます:http://stackoverflow.com/questions/6977161/where-should-i-put-py-incref- py-decref-on-block-in-python-c-extension – Daenyth
関連はありますが重複しない:PyTuple対PyDict – gecco