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