Just returns 10, as this is Decimal, :)
(self)
| 3607 | return "+Normal" |
| 3608 | |
| 3609 | def radix(self): |
| 3610 | """Just returns 10, as this is Decimal, :)""" |
| 3611 | return Decimal(10) |
| 3612 | |
| 3613 | def rotate(self, other, context=None): |
| 3614 | """Returns a rotated copy of self, value-of-other times.""" |