diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-29 20:34:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-12-29 20:34:23 (GMT) |
commit | 0d250bc119489fa7d094d4a3fd2fd2fa0a508145 (patch) | |
tree | 713daa0ef460e7a6744de0748ea829fefe6efb12 /Lib/_pydecimal.py | |
parent | 5aab44b301fff2c6a7f00e24944a3360eedd7aa8 (diff) | |
download | cpython-0d250bc119489fa7d094d4a3fd2fd2fa0a508145.zip cpython-0d250bc119489fa7d094d4a3fd2fd2fa0a508145.tar.gz cpython-0d250bc119489fa7d094d4a3fd2fd2fa0a508145.tar.bz2 |
Issue #25971: Optimized creating Fractions from floats by 2 times and from
Decimals by 3 times.
Unified error messages in float.as_integer_ratio(), Decimal.as_integer_ratio(),
and Fraction constructors.
Diffstat (limited to 'Lib/_pydecimal.py')
-rw-r--r-- | Lib/_pydecimal.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/_pydecimal.py b/Lib/_pydecimal.py index eb7bba8..02365ca 100644 --- a/Lib/_pydecimal.py +++ b/Lib/_pydecimal.py @@ -1026,11 +1026,9 @@ class Decimal(object): """ if self._is_special: if self.is_nan(): - raise ValueError("Cannot pass NaN " - "to decimal.as_integer_ratio.") + raise ValueError("cannot convert NaN to integer ratio") else: - raise OverflowError("Cannot pass infinity " - "to decimal.as_integer_ratio.") + raise OverflowError("cannot convert Infinity to integer ratio") if not self: return 0, 1 |