[pypy-commit] [OPEN] Pull request #59 for pypy/pypy: allow [newaxis] functionality in NumPy

Bitbucket pullrequests-noreply at bitbucket.org
Thu Mar 15 01:27:56 CET 2012


Pull request #59 has been updated by Michael Blume to include new changes.

https://bitbucket.org/pypy/pypy/pull-request/59/allow-newaxis-functionality-in-numpy

Title: allow [newaxis] functionality in NumPy

Creator: Michael Blume

numpy allows:

newaxis = None

a = array([1,2,3])

a[newaxis]

array([ [1,2,3] ])

This adds that.


Updated list of changes:

cb80a924de4c by Michael Blume: "still more tests

slice then newaxis, newaxis then slice"
bf21ed82269d by Michael Blume: "new tests"
4993a391e3b0 by Michael Blume: "fix a couple more function names"
dc7baf8b94ea by Michael Blume: "the name in numpy is actually newaxis -- make sure keywords make sense"
db64d273fc46 by Michael Blume: "add newaxis keyword to numpy.numeric"
4805ca9b8d4c by Michael Blume: "hack in support for [None] to create new index"
b3eff16f15be by Michael Blume: "add simple (failing) tests for newindex"


--
This is an issue notification from bitbucket.org.
You are receiving this either because you are the participating
in a pull request, or you are following it.



More information about the pypy-commit mailing list