(d)
| 1913 | localcontext = self.decimal.localcontext |
| 1914 | |
| 1915 | def hashit(d): |
| 1916 | a = hash(d) |
| 1917 | b = d.__hash__() |
| 1918 | self.assertEqual(a, b) |
| 1919 | return a |
| 1920 | |
| 1921 | #just that it's hashable |
| 1922 | hashit(Decimal(23)) |
nothing calls this directly
no test coverage detected