A dumb container object just to contain the try..except info when needed. Meant to be persistent among multiple PyDBFrames to the same code object.
| 119 | # self.try_except_infos = None |
| 120 | # ELSE |
| 121 | class _TryExceptContainerObj(object): |
| 122 | """ |
| 123 | A dumb container object just to contain the try..except info when needed. Meant to be |
| 124 | persistent among multiple PyDBFrames to the same code object. |
| 125 | """ |
| 126 | |
| 127 | try_except_infos = None |
| 128 | |
| 129 | |
| 130 | # ENDIF |