]> granicus.if.org Git - python/commitdiff
Register decimals as numbers.Number
authorRaymond Hettinger <python@rcn.com>
Tue, 3 Feb 2009 03:54:28 +0000 (03:54 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 3 Feb 2009 03:54:28 +0000 (03:54 +0000)
Lib/decimal.py
Lib/test/test_decimal.py

index 4f9be21ccb311e55abce598962d97ae8d0478bf6..c46037e474b7c42b59634d023efb04eff21d53db 100644 (file)
@@ -136,6 +136,7 @@ __all__ = [
 
 import copy as _copy
 import math as _math
+import numbers as _numbers
 
 try:
     from collections import namedtuple as _namedtuple
@@ -3695,6 +3696,12 @@ def _dec_from_triple(sign, coefficient, exponent, special=False):
 
     return self
 
+# Register Decimal as a kind of Number (an abstract base class).
+# However, do not register it as Real (because Decimals are not
+# interoperable with floats).
+_numbers.Number.register(Decimal)
+
+
 ##### Context class #######################################################
 
 
index 798f4d80941845dddf0c3041eb94304da904b675..f40de8f2078cf9fb15c5b1b60dcb80a2ca44e851 100644 (file)
@@ -30,6 +30,7 @@ import os, sys
 import pickle, copy
 import unittest
 from decimal import *
+import numbers
 from test.support import (TestSkipped, run_unittest, run_doctest,
                                is_resource_enabled)
 import random
@@ -1388,6 +1389,12 @@ class DecimalUsabilityTest(unittest.TestCase):
 
 class DecimalPythonAPItests(unittest.TestCase):
 
+    def test_abc(self):
+        self.assert_(issubclass(Decimal, numbers.Number))
+        self.assert_(not issubclass(Decimal, numbers.Real))
+        self.assert_(isinstance(Decimal(0), numbers.Number))
+        self.assert_(not isinstance(Decimal(0), numbers.Real))
+
     def test_pickle(self):
         d = Decimal('-3.141590000')
         p = pickle.dumps(d)