Magnus Lie Hetland wrote: > Hi! > > What's the best practice for appending efficiently in Cython? Do I > have to implement a dynamic array myself (either from scratch, or > based on NumPy arrays), or is there some other way?
What do you want to store? Assuming one-dimensional data, either Python lists or C++ vectors, I'd say. -- Dag Sverre _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
