Home
last modified time | relevance | path

Searched refs:hashit (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_decimal.py1769 def hashit(d): function
1776 hashit(Decimal(23))
1777 hashit(Decimal('Infinity'))
1778 hashit(Decimal('-Infinity'))
1779 hashit(Decimal('nan123'))
1780 hashit(Decimal('-NaN'))
1812 self.assertEqual(hashit(value), hashit(int(value)))
1815 self.assertEqual(hashit(Decimal(23)), hashit(23))
1817 self.assertTrue(hashit(Decimal('Inf')))
1818 self.assertTrue(hashit(Decimal('-Inf')))
[all …]