Returns a deep copy from self.
(self)
| 4027 | return nc |
| 4028 | |
| 4029 | def copy(self): |
| 4030 | """Returns a deep copy from self.""" |
| 4031 | nc = Context(self.prec, self.rounding, self.Emin, self.Emax, |
| 4032 | self.capitals, self.clamp, |
| 4033 | self.flags.copy(), self.traps.copy(), |
| 4034 | self._ignored_flags) |
| 4035 | return nc |
| 4036 | __copy__ = copy |
| 4037 | |
| 4038 | def _raise_error(self, condition, explanation = None, *args): |
no test coverage detected