summaryrefslogtreecommitdiffstats
path: root/Lib/_pydecimal.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-29 20:34:23 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-29 20:34:23 (GMT)
commit0d250bc119489fa7d094d4a3fd2fd2fa0a508145 (patch)
tree713daa0ef460e7a6744de0748ea829fefe6efb12 /Lib/_pydecimal.py
parent5aab44b301fff2c6a7f00e24944a3360eedd7aa8 (diff)
downloadcpython-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.py6
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