This sort of makes sense, but is it the 'correct' behavior?<br><br>In [20]: zeros(2, 'S')<br>Out[20]: <br>array(['', ''], <br>      dtype='|S1')<br><br>It might be more consistent to return '0' instead, as in<br>
<br>In [3]: zeros(2, int).astype('S')<br>Out[3]: <br>array(['0', '0'], <br>      dtype='|S24')<br><br>Chuck<br>