我用python import ctypes来读取我用C++写成的dll档
有以下两个问题不知如何解决
我的<List.py>档都是这样写的
<List.py>
import ctypes
dll = ctypes.CDLL('List.dll')
dll.test.restype = ctypes.py_object
dll.test.argtypes = [ctypes.py_object]
l=[1.11,2.22,3.33]
print (dll.test(l))
问题一:
<List.cpp>
#include <Python.h>
#include <iostream>
using namespace std;
extern "C" {
__declspec(dllexport) PyObject *test(PyObject *arg) {
cout << "Number of items: " << endl;
return Py_None;
}
}
这样写最后输出会出现 "Number of items: " ,但是程式是没有回应的停止运作。
如果改成return arg ,输出会变成 "Number of items: "、[1.11,2.22,3.33],正常。
请问Py_None这样用不对吗?
问题二:
<List.cpp>
#include <Python.h>
#include <iostream>
using namespace std;
extern "C" {
__declspec(dllexport) PyObject *test(PyObject *arg) {
cout << PyList_Size(arg, 1) << endl;
cout << "Number of items: " << endl;
return arg;
}
}
这样写最后输出只出现OSerror,连 "Number of items: " 都没有了
PyList_Size()这个语法应该是没有错的吧,为什么还有OSerror
拜托大家帮我解答QQ