(value: float)
| 206 | |
| 207 | |
| 208 | def _decimal_from_float_value(value: float) -> decimal.Decimal: |
| 209 | if value == 0.0: |
| 210 | return decimal.Decimal(0) |
| 211 | return _canonical_decimal(decimal.Decimal.from_float(value)) |
| 212 | |
| 213 | |
| 214 | def _int_value(value, local_type_id: int) -> int: |
no test coverage detected