Hi,
I would like to do the equivalent of
>>> import array
>>> a = array.array('f', [1,2,3])
>>> a
array('f', [1.0, 2.0, 3.0])
>>> type(a)
<type 'array.array'>from Perl and then pass the variable to a python method which accepts only an 'array.array' type.
I failed to do that by myself. Could somebody send me a little example?
Thanks.
- Subir
