Re: [C++-sig] Boost.Python + OpenGL segmentation faults

2009-11-20 Thread Mohan Ganesalingam
Back in 2005/2006 all that worked even with PyOpenGL imported under Windows. I'm using boost 1.39 to embed Python 2.6 + PyOpenGL 3 in MSVC 2008 under Windows XP right now, without any difficulties. I'm not using PyOpenGL directly from C++, but have all the relevant code in a file pygl.py, and

Re: [C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread Stefan Seefeld
On 11/20/2009 03:23 PM, troy d. straszheim wrote: For example, what does 'replaceable' mean ? Does it mean two bindings are identical or equivalent ? No it means only that the behavior in the situation above is modified. Does it merely mean the user allows the mapping to change? (This woul

Re: [C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread troy d. straszheim
Stefan Seefeld wrote: It's an interesting thought, but it raises a lot of questions, and opens a huge can of worms. (Welcome in the world of 'DLL hell' !) I'm not sure what angle to attack this problem from. In particular, I believe before thinking about interface issues, we should clarify the

Re: [C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread Stefan Seefeld
On 11/20/2009 11:47 AM, troy d. straszheim wrote: Stefan Seefeld wrote: (It's a global symbol that is seen by all DSOs. Having two DSOs provide that symbol, but with different content, is illegal.) I'd like to fix this, now, it is starting to cause me pain. For instance, it also rears its u

Re: [C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread troy d. straszheim
Stefan Seefeld wrote: On 11/20/2009 05:50 AM, Eilif Mueller wrote: Hi, I'm using boost.python to interface with some dynamically generated C++ code, employing some scipy.weave facilities to cache the results. When I force a recompile and import, I get the following message: RuntimeWarning: to

Re: [C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread Stefan Seefeld
On 11/20/2009 05:50 AM, Eilif Mueller wrote: Hi, I'm using boost.python to interface with some dynamically generated C++ code, employing some scipy.weave facilities to cache the results. When I force a recompile and import, I get the following message: RuntimeWarning: to-Python converter for

[C++-sig] dynamic compile and "to-Python converter ... second conversion method ignored"

2009-11-20 Thread Eilif Mueller
Hi, I'm using boost.python to interface with some dynamically generated C++ code, employing some scipy.weave facilities to cache the results. When I force a recompile and import, I get the following message: RuntimeWarning: to-Python converter for __randint already registered; second conversi