Fix bug in --numbers fixed in Python where results would not be rounded after division

This commit is contained in:
RunasSudo 2021-01-14 02:17:16 +11:00
parent cad1e324d9
commit f724ae0b93
Signed by: RunasSudo
GPG Key ID: 7234E476BF21C61A
1 changed files with 11 additions and 0 deletions

View File

@ -46,6 +46,17 @@ class Fixed(BasePyNum):
"""Overrides BasePyNum._to_impl"""
return decimal.Decimal(value).quantize(_quantize_exp)
@classmethod
def _truediv_impl(cls, i1, i2):
"""Implements BaseNum._truediv_impl"""
return (i1 / i2).quantize(_quantize_exp)
@compatible_types
def __itruediv__(self, other):
"""Overrides BaseNum.__itruediv__"""
self.impl = (self.impl / other.impl).quantize(_quantize_exp)
return self
def round(self, dps, mode):
"""Implements BaseNum.round"""
return Fixed._from_impl(self.impl.quantize(decimal.Decimal('10') ** -dps, mode))