Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45332: Fix broken Decimal test and benchmark (GH-28680) | Dong-hee Na | 2021-10-01 | 1 | -1/+1 |
| | |||||
* | bpo-43422: Revert _decimal C API addition (GH-24960) | Antoine Pitrou | 2021-03-21 | 1 | -78/+3 |
| | | | | | | | | | 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 | ||||
* | Catch all skip_handler cases (GH-21842) | Stefan Krah | 2020-08-12 | 1 | -3/+3 |
| | |||||
* | Call randseed() before other imports in deccheck.py (GH-21834) | Stefan Krah | 2020-08-11 | 1 | -8/+8 |
| | |||||
* | Replace import_fresh_module in decimal test files (GH-21815) | Stefan Krah | 2020-08-10 | 1 | -3/+4 |
| | |||||
* | bpo-41324 Add a minimal decimal capsule API (#21519) | Stefan Krah | 2020-08-10 | 1 | -0/+74 |
| | |||||
* | Add multicore support to deccheck.py. (GH-20731) | Stefan Krah | 2020-06-08 | 1 | -21/+110 |
| | |||||
* | bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581) | Stefan Krah | 2020-02-21 | 1 | -3/+136 |
| | |||||
* | Issue #25928: Add Decimal.as_integer_ratio(). Python parts and docs by | Stefan Krah | 2015-12-28 | 1 | -3/+3 |
| | | | | Mark Dickinson. | ||||
* | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
|\ | | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | | Issue #19232: Speed up decimal import. Additionally, since _decimal is | Stefan Krah | 2014-09-10 | 1 | -3/+4 |
|/ | | | | | self-contained, this change facilitates maintenance and the Python version can be easily imported for experimentation. | ||||
* | 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. | ||||
* | Issue #17768: Support newline fill character in decimal.py and NUL fill | Stefan Krah | 2013-05-29 | 1 | -2/+2 |
| | | | | character in _decimal.c. | ||||
* | Issue #16422: Use strings for rounding mode constants for better readability | Stefan Krah | 2013-01-16 | 1 | -22/+14 |
| | | | | and pickling compatibility. | ||||
* | Issue #15783: Except for the number methods, the C version of decimal now | Stefan Krah | 2012-12-15 | 1 | -0/+34 |
| | | | | | supports all None default values present in decimal.py. These values were largely undocumented. | ||||
* | Raise InvalidOperation if exponents of zeros are clamped during exact | Stefan Krah | 2012-04-05 | 1 | -0/+1 |
| | | | | | conversion in the Decimal constructor. Exact here refers to the representation and not to the value (clamping does not change the value). | ||||
* | Issue #7652: Integrate the decimal floating point libmpdec library to speed | Stefan Krah | 2012-03-21 | 1 | -0/+1074 |
up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application. |