diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-03-21 18:25:23 +0100 |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-03-21 18:25:23 +0100 |
commit | 1919b7e72bc43315b32f38a6f5f01e8c717907f4 (patch) | |
tree | ef7490b66425fd2c622740ef9adfb03d806b7517 /Misc/valgrind-python.supp | |
parent | 8bfccd852e2bceb04664b4832fc80eb3b7584918 (diff) | |
download | cpython-git-1919b7e72bc43315b32f38a6f5f01e8c717907f4.tar.gz |
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 'Misc/valgrind-python.supp')
-rw-r--r-- | Misc/valgrind-python.supp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp index 95e1b9e80f..81a07c9f45 100644 --- a/Misc/valgrind-python.supp +++ b/Misc/valgrind-python.supp @@ -456,3 +456,16 @@ fun:PyUnicode_FSConverter } +# Additional suppressions for the unified decimal tests: +{ + test_decimal + Memcheck:Addr4 + fun:PyUnicodeUCS2_FSConverter +} + +{ + test_decimal2 + Memcheck:Addr4 + fun:PyUnicode_FSConverter +} + |