Exception info tuple with a proxy around the frame objects.
(self)
| 115 | |
| 116 | @property |
| 117 | def exc_info(self): |
| 118 | """Exception info tuple with a proxy around the frame objects.""" |
| 119 | return self.exc_type, self.exc_value, self.frames[0] |
| 120 | |
| 121 | @property |
| 122 | def standard_exc_info(self): |
no outgoing calls
no test coverage detected