I believe that the fix to Ticket #808 has caused a regression in numpy.insert() This is the [commit](https://github.com/numpy/numpy/commit/2c04244da264cb1665d6162ae119d2f05ad65150) Previously: ``` np.insert([[1,1,1]], 0, [2,2,2], axis=0) ``` gave: ``` array([[2, 2, 2], [1, 1, 1]]) ``` now it gives ``` array([[2, 2, 2], [2, 2, 2], [2, 2, 2], [1, 1, 1]]) ``` I don't think is the correct result. Also issue [#378](https://github.com/numpy/numpy/issues/378) is a result of same change