On 5/1/07, Mark.Miller <mpmusu@cc.usu.edu> wrote:
OK...so just for future reference...does a Numpy 'long' not directly
correspond to a Python 'long'?

No. A  numpy long corresponds, more or less, to the C long long int.

In [2]: array([1],dtype=long)
Out[2]: array([1], dtype=int64)

Chuck