Ondrej Certik wrote: > and add() is implemented in C++, and internally it calls some stuff in > Python (like scipy). In principle it could be recursively nested > couple times. Can the Python interpreter be confused by this > "nesting"?
No, there shouldn't be any problem calling back and forth between Python and extension code as deep as you want (subject to the Python recursion depth limitation). -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
