(self, precision)
| 174 | return bool(float(self) == other) |
| 175 | |
| 176 | def normalize(self, precision): # type: ignore |
| 177 | # type: (int) -> EDecimal |
| 178 | with decimal.localcontext() as ctx: |
| 179 | ctx.prec = precision |
| 180 | return EDecimal(super(EDecimal, self).normalize(ctx)) |
| 181 | |
| 182 | |
| 183 | @overload |