Jim Kleckner wrote: > Has anyone wrapped functions with call-by-reference syntax? > What do you recommend?
One workaround is to declare to cython that the function requires an object and then dereference a pointer with ptr[0]. Per this page: http://www.sagemath.org/doc/html/prog/node63.html _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
