BTW, in numpy-1.0b1
numpy.zeros((3,3), order='QQQ')
pass without generating any error... Is this intended behaviour?
This has been fixed:
In [3]: zeros((3,3), order='QQQ')
---------------------------------------------------------------------------
exceptions.TypeError Traceback (most recent call last)
/home/charris/<ipython console>
TypeError: order not understood
Chuck