Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45332: Fix broken Decimal test and benchmark (GH-28680) | Dong-hee Na | 2021-10-01 | 1 | -4/+1 |
| | |||||
* | bpo-43422: Revert _decimal C API addition (GH-24960) | Antoine Pitrou | 2021-03-21 | 1 | -3/+6 |
| | | | | | | | | | Stefan Krah requested the reversal of these (unreleased) changes, quoting him: > The capsule API does not meet my testing standards, since I've focused on the upstream mpdecimal in the last couple of months. > Additionally, I'd like to refine the API, perhaps together with the Arrow community. Automerge-Triggered-By: GH:pitrou | ||||
* | Replace import_fresh_module in decimal test files (GH-21815) | Stefan Krah | 2020-08-10 | 1 | -6/+3 |
| | |||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+0 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | Issue #19936: Remove executable bits from C source files and several forgotten | Serhiy Storchaka | 2014-01-16 | 1 | -0/+0 |
| | | | | test files. | ||||
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -0/+0 |
| | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. | ||||
* | Issue #19936: Disable shebang lines in order to prevent using a random | Stefan Krah | 2014-01-16 | 1 | -2/+0 |
| | | | | system python. | ||||
* | Make it clear that the pi function is modified for benchmarking purposes. | Stefan Krah | 2012-09-30 | 1 | -2/+7 |
| | |||||
* | Restore the benchmark order to avoid waiting for decimal.py if just the | Stefan Krah | 2012-09-25 | 1 | -3/+4 |
| | | | | prec=9 test is used. | ||||
* | Fix whitespace. | Brett Cannon | 2012-09-25 | 1 | -1/+1 |
| | |||||
* | Fix whitespace. | Brett Cannon | 2012-09-25 | 1 | -18/+18 |
| | |||||
* | Make the decimal bench file run under Python 2.7. | Brett Cannon | 2012-09-25 | 1 | -18/+28 |
| | |||||
* | Make the benchmark more fair for _decimal/decimal.py by setting context.prec | Stefan Krah | 2012-06-24 | 1 | -6/+6 |
| | | | | only once (float obviously doesn't set any context at all). | ||||
* | Fix Overflow exception in the bignum factorial benchmark that is due to | Stefan Krah | 2012-04-01 | 1 | -1/+4 |
| | | | | the recent change of the default value for context.Emax. | ||||
* | Issue #7652: Integrate the decimal floating point libmpdec library to speed | Stefan Krah | 2012-03-21 | 1 | -0/+116 |
up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application. |