(self, other, context=None)
| 118 | """ |
| 119 | |
| 120 | def __add__(self, other, context=None): |
| 121 | # type: (_Decimal, Any) -> EDecimal |
| 122 | return EDecimal(Decimal.__add__(self, Decimal(other))) |
| 123 | |
| 124 | def __radd__(self, other): |
| 125 | # type: (_Decimal) -> EDecimal |