- 论坛徽章:
- 1
|
本帖最后由 wtz_wh 于 2014-03-10 16:49 编辑
我写了一个sample,主要是为了调试PyObject_IsInstance函数在python2.7上运行为何总是返回0的问题,结果发现是因为module被import了两次导致的。下面是我的sample,- [root@localhost wtz]# ll
- drwxr-xr-x 4 root root 4096 Feb 21 15:08 build
- -rw-r--r-- 1 root root 98 Mar 10 13:23 client.py
- -rw-r--r-- 1 root root 221 Mar 6 16:44 client.pyc
- -rw-r--r-- 1 root root 284 Mar 10 10:32 common.py
- -rw-r--r-- 1 root root 1051 Mar 10 10:33 common.pyc
- -rw-r--r-- 1 root root 26 Mar 10 13:22 __init__.py
- -rw-r--r-- 1 root root 132 Mar 10 13:23 __init__.pyc
- -rw-r--r-- 1 root root 166 Mar 7 15:59 profile.python
- -rw-r--r-- 1 root root 2045 Feb 26 15:37 ReadBuf.c
- -rwxr-xr-x 1 root root 18356 Feb 26 15:37 ReadBuf.so
- -rw-r--r-- 1 root root 121 Feb 19 17:29 setup.py
复制代码 common.py- import ReadBuf
- class Test:
- def __init__(self):
- print "Test class"
- def py_printT(self):
- print "Test py_print"
- class pyTest(Test):
- def __init__(self):
- Test.__init__(self)
- print "pyTest class"
- def py_print(self):
- print "pyTest py_print"
- print "call common"
复制代码 client.py- import wtz
- #from common import pyTest
- import ReadBuf as rb
- b = wtz.common.pyTest()
- rb.testIns(b)
复制代码 __init__.pyReadBuf.c- #include "Python.h"
- static PyObject* Test_IsInstance(PyObject* self, PyObject* args){
- PyObject* pTest = NULL;
- PyObject* pName = NULL;
- PyObject* moduleDict = NULL;
- PyObject* className = NULL;
- PyObject* pModule = NULL;
- pName = PyString_FromString("common");
- pModule = PyImport_Import(pName);
- if (!pModule){
- printf("can not find client.py\n");
- Py_RETURN_NONE;
- }
- moduleDict = PyModule_GetDict(pModule);
- if (!moduleDict){
- printf("can not get Dict\n");
- Py_RETURN_NONE;
- }
- className = PyDict_GetItemString(moduleDict, "Test");
- if (!className){
- printf("can not get className\n");
- Py_RETURN_NONE;
- }
- int ok = PyArg_ParseTuple(args, "O", &pTest);
- if (!ok){
- printf("parse tuple error!\n");
- Py_RETURN_NONE;
- }
- if (!pTest){
- printf("can not get the instance from python\n");
- Py_RETURN_NONE;
- }
- if (!PyObject_IsInstance(pTest, className)){
- printf("Not an instance for Test\n");
- Py_RETURN_NONE;
- } else {
- printf("an instance for Test\n");
- }
- Py_RETURN_NONE;
- }
- static PyMethodDef readbuffer[] = {
- {"testIns", Test_IsInstance, METH_VARARGS, "test for instance!"},
- {NULL, NULL}
- };
- void initReadBuf(){
- PyObject* m;
- m = Py_InitModule("ReadBuf", readbuffer);
- }
复制代码 当我在python2.7上执行python client.py的时候,结果为- call common
- Test class
- pyTest class
- call common
- Not an instance for Test
复制代码 当我修改client.py如下- #import wtz
- from common import pyTest
- import ReadBuf as rb
- b = pyTest()
- rb.testIns(b)
复制代码 在python2.7上执行python client.py的结果为- call common
- Test class
- pyTest class
- an instance for Test
复制代码 如果我不修改client.py的情况下,该怎样去做才能避免module被import两次?
请各位指教!
|
|