2010/7/26 bruno Piguet <bruno.piguet@gmail.com>

 - I'm thinking of using something like  np.array(f.read(), dtype=some_type).
 
Actually :
data=np.fromstring(f.read(), dtype=some_type, count=-1)

Bruno.