Re: [C++-sig] Boost python simple interfacing

2013-09-27 Thread Giuseppe Corbelli
On 25/09/2013 22:06, Kassiopi Kassiopi2 wrote: Hi, I apologize for the delayed reply. I was hoping to avoid linking the commandManager into the .so file. I am trying to avoid that because then, I will have to do this for any other module that I create and uses the commandManager. I would prefer

Re: [C++-sig] Boost python simple interfacing

2013-09-27 Thread Cedric GESTES
On Wed, Sep 25, 2013 at 10:06 PM, Kassiopi Kassiopi2 wrote: > Hi, > > I apologize for the delayed reply. > > I was hoping to avoid linking the commandManager into the .so file. I am > trying to avoid that because then, I will have to do this for any other > module that I create and uses the comman

Re: [C++-sig] memory leak with __iadd__

2013-09-27 Thread Nikolay Mladenov
if you .def ("test_iadd", &hist_t::operator+=, bp::return_self<>()) and you use it instead of += do you get the leak? On Thu, Sep 26, 2013 at 10:44 AM, Neal Becker wrote: > Nikolay Mladenov wrote: > > > On Wed, Sep 25, 2013 at 11:22 AM, Neal Becker > wrote: > > > >> I've been trying to track