diff options
| author | Stefan Krah <skrah@bytereef.org> | 2012-03-21 17:25:23 (GMT) |
|---|---|---|
| committer | Stefan Krah <skrah@bytereef.org> | 2012-03-21 17:25:23 (GMT) |
| commit | 1919b7e72bc43315b32f38a6f5f01e8c717907f4 (patch) | |
| tree | ef7490b66425fd2c622740ef9adfb03d806b7517 /Lib/test/test_numeric_tower.py | |
| parent | 8bfccd852e2bceb04664b4832fc80eb3b7584918 (diff) | |
| download | cpython-1919b7e72bc43315b32f38a6f5f01e8c717907f4.zip cpython-1919b7e72bc43315b32f38a6f5f01e8c717907f4.tar.gz cpython-1919b7e72bc43315b32f38a6f5f01e8c717907f4.tar.bz2 | |
Issue #7652: Integrate the decimal floating point libmpdec library to speed
up the decimal module. Performance gains of the new C implementation are
between 12x and 80x, depending on the application.
Diffstat (limited to 'Lib/test/test_numeric_tower.py')
| -rw-r--r-- | Lib/test/test_numeric_tower.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_numeric_tower.py b/Lib/test/test_numeric_tower.py index bef3d4c..3423d4e 100644 --- a/Lib/test/test_numeric_tower.py +++ b/Lib/test/test_numeric_tower.py @@ -150,7 +150,7 @@ class ComparisonTest(unittest.TestCase): # int, float, Fraction, Decimal test_values = [ float('-inf'), - D('-1e999999999'), + D('-1e425000000'), -1e308, F(-22, 7), -3.14, |
