Re: [C++-sig] Cplusplus-sig Digest, Vol 30, Issue 6

2011-03-09 Thread Ryan Murray
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? &

[C++-sig] boost python exception handling

2011-03-07 Thread Ryan Murray
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