diff options
Diffstat (limited to 'dev-python/mpmath/files/mpmath-0.17-python-3.2.patch')
-rw-r--r-- | dev-python/mpmath/files/mpmath-0.17-python-3.2.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/dev-python/mpmath/files/mpmath-0.17-python-3.2.patch b/dev-python/mpmath/files/mpmath-0.17-python-3.2.patch deleted file mode 100644 index 00c74af9c7fe..000000000000 --- a/dev-python/mpmath/files/mpmath-0.17-python-3.2.patch +++ /dev/null @@ -1,16 +0,0 @@ -http://code.google.com/p/mpmath/issues/detail?id=203 -http://code.google.com/p/mpmath/source/detail?r=1238 - ---- mpmath/tests/test_basic_ops.py -+++ mpmath/tests/test_basic_ops.py -@@ -148,8 +148,8 @@ - assert hash(mp.mpq(5,1)) == hash(5) - assert hash(mp.mpq(1,2)) == hash(0.5) - if sys.version >= "3.2": -- assert hash(mpf(1))*2**2000 == hash(2**2000) -- assert hash(mpf(1))/2**2000 == hash(mpq(1,2**2000)) -+ assert hash(mpf(1)*2**2000) == hash(2**2000) -+ assert hash(mpf(1)/2**2000) == hash(mpq(1,2**2000)) - - # Advanced rounding test - def test_add_rounding(): |