Re: [Orbit-python-list] Problems with orbit-python-cvs
Status: Inactive
Brought to you by:
tack
From: Jason T. <ta...@li...> - 2000-11-30 15:04:56
|
> suggests I do need these structures live for this to happen. Unless, of > course, when I do an import CORBA they are created automatically; still, > where can the error come from? POAManager_PyObject_Type lives in CORBAmodule, so you need to import that before you import PortableServer. So: [tack@anywhere src]$ python >>> import CORBA >>> import PortableServer Works, but: [tack@anywhere src]$ python >>> import PortableServer Traceback (innermost last): File "<stdin>", line 1, in ? ImportError: ./PortableServermodule.so: undefined symbol: POAManager_PyObject_Type Jason. |