compiled with gcc, I get:
>>> from array import array
>>> array( 'f' )
array('f')
>>> array( 'f', [1.0,2.0,3.0] )
array('f', [1.0, 2.0, 3.0])
>>>
while compiled with AIX xlc, I get:
>>> array( 'f' )
< object at 2006f508>
>>> array( 'f', [1.0,2.0] )
Illegal instruction(coredump)
also:
>>>a = array( 'i' )
assigns SOME sort of object to a, but:
type( a )
core dumps.
This wierd behavious makes me thing that it's not a compiler bug, but
maybe some sort of name conflict.
Any clues ?
- Clueless in Virginia,
- Steve Majewski <sdm7g@Virginia.EDU>