summaryrefslogtreecommitdiffstats
path: root/Lib/decimal.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index b3d84e7..75a1d5e 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -504,7 +504,7 @@ def localcontext(ctx=None):
##### Decimal class #######################################################
-class Decimal(_numbers.Real, _numbers.Inexact):
+class Decimal(_numbers.Real):
"""Floating point class for decimal arithmetic."""
__slots__ = ('_exp','_int','_sign', '_is_special')