Charles R Harris wrote: > Travis, > > I notice that you used PyDataMem_NEW, PyDimMem_NEW, and friends to > allocate memory in the sort routines. Is there a good reason to use > these rather than malloc? Only to allow for the possibility of different allocation routines. There is an option to use the Python memory allocators, for example.
For temporary memory, though malloc and free is fine. -Travis _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
