(self, t, v, tb)
| 3845 | setcontext(self.new_context) |
| 3846 | return self.new_context |
| 3847 | def __exit__(self, t, v, tb): |
| 3848 | setcontext(self.saved_context) |
| 3849 | |
| 3850 | class Context(object): |
| 3851 | """Contains the context for a Decimal instance. |
nothing calls this directly
no test coverage detected