[pypy-dev] cffi wrapper for libeinspline, a cubic B-spline library, runs on Pypy

2013-05-12 Thread Kay F. Jahnke
nything suitable. It may be of use while a Pypy version of scipy hasn't materialized, and even has a few bits which I haven't found in scipy. Kay F. Jahnke ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

[pypy-dev] numpypy buffer interface for slices different from numpy

2013-04-23 Thread Kay F. Jahnke
uot;credits" or "license" for more information. >>> import numpy as np >>> a=np.zeros(10) >>> a.__array_interface__['data'][0] 162282152 >>> a[2:].__array_interface__['data'][0] 162282168 <<<<<<<<<<< different value with regards Kay F. Jahnke ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

[pypy-dev] numpypy problem - can't find augmented assignment methods

2013-03-30 Thread Kay F. Jahnke
Hi group! I'm running numpypy and I have a problem with augmented assignment statements. It looks to me like the relevant methods are simply absent from my numpypy array objects. Consider for example: $ pypy Python 2.7.3 (7e4f0faa3d51, Nov 16 2012, 16:56:51) [PyPy 2.0.0-beta1 with GCC 4.4.3]