On Wed, Sep 15, 2010 at 1:09 AM, Dag Sverre Seljebotn <[email protected]> wrote: > In the C++ docs it says "C++ objects can now be stack-allocated." > > Should that be "not"? > http://docs.cython.org/src/userguide/wrapping_CPlusPlus.html
They can be, but there should be some caveats (specifically, only default constructors and they are all allocated at the beginning of the method and deallocated at the end, unlike C++ scoping rules). - Robert _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
