File size: 179 Bytes
907001b
 
 
 
1
2
3
4
def _modulo(self, decimal_argument):
    """pass"""
    _times, remainder = self._context.divmod(decimal_argument, 100)
    return remainder if remainder >= 0 else remainder + 100