summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Grozin <grozin@gentoo.org>2009-06-11 16:49:28 +0000
committerAndrey Grozin <grozin@gentoo.org>2009-06-11 16:49:28 +0000
commit414c5670b6d3bdb13817e5580496c981a554dd81 (patch)
tree099c438e10822d17d5122484f66dd3efd605e4e6 /dev-python/mpmath/files
parentBump to 0.2.6.12. Remove old. Fix bug 271322. (diff)
downloadhistorical-414c5670b6d3bdb13817e5580496c981a554dd81.tar.gz
historical-414c5670b6d3bdb13817e5580496c981a554dd81.tar.bz2
historical-414c5670b6d3bdb13817e5580496c981a554dd81.zip
2 failing tests fixed
Package-Manager: portage-2.2_rc33/cvs/Linux i686
Diffstat (limited to 'dev-python/mpmath/files')
-rw-r--r--dev-python/mpmath/files/mpmath-0.12-test.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-python/mpmath/files/mpmath-0.12-test.patch b/dev-python/mpmath/files/mpmath-0.12-test.patch
new file mode 100644
index 000000000000..28f0b560a447
--- /dev/null
+++ b/dev-python/mpmath/files/mpmath-0.12-test.patch
@@ -0,0 +1,15 @@
+diff -r -U2 mpmath-0.12.orig/mpmath/tests/test_linalg.py mpmath-0.12/mpmath/tests/test_linalg.py
+--- mpmath-0.12.orig/mpmath/tests/test_linalg.py 2009-06-09 20:39:06.000000000 +0200
++++ mpmath-0.12/mpmath/tests/test_linalg.py 2009-06-11 17:42:27.000000000 +0200
+@@ -91,4 +91,5 @@
+
+ def test_householder():
++ mp.dps = 15
+ A, b = A8, b8
+ H, p, x, r = householder(extend(A, b))
+@@ -143,4 +144,5 @@
+
+ def test_singular():
++ mp.dps = 15
+ A = [[5.6, 1.2], [7./15, .1]]
+ B = repr(zeros(2))