(self)
| 333 | self._inside_client_test = False |
| 334 | |
| 335 | def get_context(self): |
| 336 | try: |
| 337 | return self._cxt.__getattribute__("handler") |
| 338 | except AttributeError: |
| 339 | self._cxt.handler = _default_context |
| 340 | return self._cxt.handler |
| 341 | |
| 342 | def set_context(self, cxt): |
| 343 | old_cxt = self.get_context() |
no test coverage detected