Author: Alex Gaynor <alex.gay...@gmail.com> Branch: numpy-dtype-alt Changeset: r46848:61b579532dcb Date: 2011-08-28 05:54 +0000 http://bitbucket.org/pypy/pypy/changeset/61b579532dcb/
Log: fix for 32bits. diff --git a/pypy/module/micronumpy/test/test_ufuncs.py b/pypy/module/micronumpy/test/test_ufuncs.py --- a/pypy/module/micronumpy/test/test_ufuncs.py +++ b/pypy/module/micronumpy/test/test_ufuncs.py @@ -112,7 +112,7 @@ x = maximum(2, 3) assert x == 3 - assert type(x) is int + assert isinstance(x, (int, long)) def test_multiply(self): from numpy import array, multiply _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit