I have gone through and defined my new types, stored them in a pytypeobject and called the following functions (after initializing the interpreter):
PyType_Ready(); //this takes my defined typed
PyModule_AddObject(); //this adds the defined type to a module I created using PyModule_Create();
Now when I try to use the type I have defined the interpreter says it doesn't exist so I am assuming there is another step that must be taken in order to add a type at run time or there is some other set of steps I must take to achieve this.
Any help will be greatly appreciated.
Python Syntax Error:
Traceback (most recent call last):
File "testscript.py", line 1, in <module>
import Bound
ImportError: No module named Bound
Test script contents:
import Bound
l = Bound.Foo()
Bound is the name I defined the module, and Foo is the type I am trying to define, for testing purposes.
Foo. So you need to work out producing a module that you can import first. – Thomas K Jun 27 '11 at 23:45