1

我在 C 中有以下例程,用于将字符串数组转换为 python 字符串列表

PyObject* build_pylist(char** strings, unsigned int string_cnt){

    PyObject* list = PyList_New(string_cnt);
    int i;
    for(i = 0; i < string_cnt; i++){

        PyObject* pystring = PyString_FromStringAndSize(
            (const char*) strings[i], 
            (Py_ssize_t) strlen(strings[i])
        );

        #per http://www.kbs.twi.tudelft.nl/Documentation/Programming/python-2.1/ext/thinIce.html
        #apparently the inc/dec is necessary...doesn't seem
        #to make a difference

        Py_INCREF(pystring);
        PyList_SET_ITEM(
            list, 
            (Py_ssize_t) i, 
            pystring
        );
        Py_DECREF(pystring);

        free(strings[i]);
    }

    free(strings);
    return list;
}

PyString_FromStringAndSize函数会复制给定字符串,因此我在复制不必要的字符串时释放它们,然后释放这些字符串指针的容器。这一切似乎都很好。python 列表返回到脚本,所有字符串看起来都不错,当通过sys.getrefcount列表中的字符串和列表本身检查时,引用计数看起来也不错。

refcounts 都返回 2,这似乎是正确的,因为对 getrefcount 的调用会导致临时增加 1。我很确定这与基于核心转储分析的引用计数有关

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   org.python.python               0x000000010abfc52a collect + 482
1   org.python.python               0x000000010abfc33f PyGC_Collect + 35
2   org.python.python               0x000000010abea056 Py_Finalize + 290
3   org.python.python               0x000000010abfbe9b Py_Main + 3143
4   libdyld.dylib                   0x00007fff8843a7e1 start + 1

错误发生在脚本退出时,您可以清楚地看到垃圾收集器中正在发生崩溃。对于这个错误,我唯一能想到的就是错误的引用计数。

有什么想法吗?

4

1 回答 1

0

与垃圾收集没有直接关系,但您是否使用与构建您的 python 版本相同的编译器?有时这很重要。我曾经调试了几个星期的段错误,只有当我用 Microsoft Visual C++ Compiler for python 替换 MinGW 时才消失。

于 2015-03-25T09:32:00.877 回答