Re: [Numpy-discussion] Questions regarding migrating from Numeric to numpy

2007-03-14 Thread Travis Oliphant
vinjvinj wrote: >I'm in the process of migrating from Numeric to numpy. In some of my >code I have the following: > >a = zeros(num_elements, PyObject) >b = zeros(num_elements, PyObject) > > PyObject --> object -Travis ___ Numpy-discussion mailing li

[Numpy-discussion] Questions regarding migrating from Numeric to numpy

2007-03-14 Thread vinjvinj
I'm in the process of migrating from Numeric to numpy. In some of my code I have the following: a = zeros(num_elements, PyObject) b = zeros(num_elements, PyObject) a is an array of python string objects and b is an array holding mx.DateTime objects. What do I have to do to migrate this over to nu