Open
Description
When the width of all columns is > maxwidth (defaults to 80), it strips too much. In the example below, it could show at least columns aa and bb.
>>> a = Array([[[-0.1742963410560897, -0.17789925896082637, -0.17511709087083327]]], 'SCENARIO=a;DIM2=b;COL=aa,bb,cc')
>>> a
SCENARIO DIM2\COL ...
a b ...
>>> set_options(display_width=200)
>>> a
SCENARIO DIM2\COL aa bb cc
a b -0.1742963410560897 -0.17789925896082637 -0.17511709087083327