Lines Matching refs:decimal
3 import decimal
47 # (PyTime rounding method, decimal rounding method)
48 (_PyTime.ROUND_FLOOR, decimal.ROUND_FLOOR),
49 (_PyTime.ROUND_CEILING, decimal.ROUND_CEILING),
50 (_PyTime.ROUND_HALF_EVEN, decimal.ROUND_HALF_EVEN),
51 (_PyTime.ROUND_UP, decimal.ROUND_UP),
852 with decimal.localcontext() as context:
887 d = decimal.Decimal(x)
950 denom = decimal.Decimal(denominator)
953 d = decimal.Decimal(value) / denom
1009 with decimal.localcontext() as context:
1010 context.rounding = decimal.ROUND_CEILING
1011 us = self.decimal_round(decimal.Decimal(t) / US_TO_NS)