[pypy-commit] pypy matrixmath: maybe found a problem, add comment instead of fixing it

mattip noreply at buildbot.pypy.org
Fri Nov 25 07:49:54 CET 2011


Author: mattip
Branch: matrixmath
Changeset: r49773:fee2e7a857cd
Date: 2011-11-25 08:49 +0200
http://bitbucket.org/pypy/pypy/changeset/fee2e7a857cd/

Log:	maybe found a problem, add comment instead of fixing it

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
@@ -786,6 +786,8 @@
         new_sig = signature.Signature.find_sig([
             NDimSlice.signature, self.signature,
         ])
+        #Does the [:] actually create a copy?
+        #I should do it explicitly
         arr = NDimSlice(self, new_sig, self.start, self.strides[:],
                 self.backstrides[:], self.shape[:])
 


More information about the pypy-commit mailing list