hi all,
will array(Python set) (and asarray, asfarray etc) ever be implemented
as cast method?
Now it just puts the set into 1st element:
>>> asarray(set([11, 12, 13, 14]))
array(set([11, 12, 13, 14]), dtype=object)
>>> array(set([11, 12, 13, 14]))
array(set([11, 12, 13, 14]), dtype=object)
Currently I use array(list(my_set)) instead.
D.