From: Stefan v. d. W. <st...@su...> - 2006-06-20 10:41:12
|
Hi Simon On Tue, Jun 20, 2006 at 08:22:30PM +0100, Simon Burton wrote: > > >>> import numpy > >>> numpy.__version__ > '0.9.9.2631' > >>> numpy.Int32 > Traceback (most recent call last): > File "<stdin>", line 1, in ? > AttributeError: 'module' object has no attribute 'Int32' > >>>=20 >=20 > This was working not so long ago. Int32, Float etc. are part of the old Numeric interface, that you can now access under the numpy.oldnumeric namespace. If I understand correctly, doing import numpy.oldnumeric as Numeric should provide you with a Numeric-compatible replacement. The same types can be accessed under numpy as int32 (lower case) and friends. Cheers St=E9fan |