[pypy-commit] pypy numpy-refactor: transpose

fijal noreply at buildbot.pypy.org
Thu Sep 6 17:10:55 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-refactor
Changeset: r57181:b01843c2246a
Date: 2012-09-06 17:10 +0200
http://bitbucket.org/pypy/pypy/changeset/b01843c2246a/

Log:	transpose

diff --git a/pypy/module/micronumpy/interp_numarray.py b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -462,6 +462,7 @@
     copy = interp2app(W_NDimArray.descr_copy),
     reshape = interp2app(W_NDimArray.descr_reshape),
     T = GetSetProperty(W_NDimArray.descr_get_transpose),
+    transpose = interp2app(W_NDimArray.descr_get_transpose),
     tolist = interp2app(W_NDimArray.descr_tolist),
     flatten = interp2app(W_NDimArray.descr_flatten),
     ravel = interp2app(W_NDimArray.descr_ravel),


More information about the pypy-commit mailing list