Hello,

Sorry for being insistent, but I recognize that I'm having a bad time
with NumPy data type rational. Is there an explanation for this?:

>>> numpy.dtype('i4').type
<type 'numpy.int32'>
>>> numpy.dtype('int32').type
<type 'numpy.int32'>
>>> numpy.dtype('i4').type == numpy.dtype('int32').type
True

So far so good, but is the next the intended behaviour?

>>> numpy.typeDict['i4']
<type 'numpy.int32'>
>>> numpy.typeDict['int32']
<type 'numpy.int32'>
>>> numpy.typeDict['i4'] == numpy.typeDict['int32']
False


-- 
>0,0<   Francesc Altet     http://www.carabos.com/
V   V   Cárabos Coop. V.   Enjoy Data
 "-"



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to