[C++-sig] new to python; old to C++

2008-10-30 Thread Alan Baljeu
Hi all. Question: which python-calling-C++ tool should I try? Background: I need to use Visual Studio 2005 native C++. I know some tools use gcc. That's fine provided it's for something besides compiling my application. I'm looking at Python as a way to accelerate development of a C++ applic

Re: [C++-sig] Problem accessing bp::list attributes in C++

2008-10-30 Thread David Abrahams
Looks like you have a bug somewhere else. Trying to reduce this to a minimal reproducible case will doubtless help you find it. Sent from my iPhone On Oct 30, 2008, at 5:38 AM, christophe grimault <[EMAIL PROTECTED] > wrote: Hi, I wrote a function to speedup a part of my Python code that

[C++-sig] Problem accessing bp::list attributes in C++

2008-10-30 Thread christophe grimault
Hi, I wrote a function to speedup a part of my Python code that manipulates python list objects. I do stg like: void Foo(numeric::array& X, numeric::array& Y, bool flag, list max_points, list min_points, list left_max_points, list right_max_points){ ...