g 'lib') for python to import
> it/associate it with the module "testing". Is it possible that you're
> actually loading a module from some old build or something?
>
> Other than that, I can't see any problems. Can you possibly post a stack
> trace?
&
Hi All,
I am testing boost python with the following code:
#include
#include
#include
using namespace boost::python;
int pyrun_main();
BOOST_PYTHON_MODULE(testing)
{
def("pyrun_main",pyrun_main);
}
int pyrun_main(){
try{
throw std::exception();
}
catch(std::excepti