[pypy-commit] pypy vecopt-merge: added out_dim to the list of attributes

plan_rich noreply at buildbot.pypy.org
Tue Aug 11 14:37:56 CEST 2015


Author: Richard Plangger <rich at pasra.at>
Branch: vecopt-merge
Changeset: r78889:9b128f66714b
Date: 2015-08-11 14:38 +0200
http://bitbucket.org/pypy/pypy/changeset/9b128f66714b/

Log:	added out_dim to the list of attributes

diff --git a/pypy/module/micronumpy/strides.py b/pypy/module/micronumpy/strides.py
--- a/pypy/module/micronumpy/strides.py
+++ b/pypy/module/micronumpy/strides.py
@@ -7,7 +7,7 @@
 # structures to describe slicing
 
 class BaseChunk(object):
-    _attrs_ = ['step']
+    _attrs_ = ['step','out_dim']
     pass
 
 


More information about the pypy-commit mailing list