Dag Sverre Seljebotn wrote: > Bottom line: Unless the memory usage or startup time is a problem, don't > worry about this, just do it :-)
If your code won't be making any use of Python objects or Python libraries, there probably won't be much advantage to using Cython -- you'll still be writing C code, just with a slightly different syntax. On the other hand, if you want to take advantage of Python features in your code, this is a perfectly reasonable thing to do. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
