(self,val)
| 1157 | return self._call_pdb |
| 1158 | |
| 1159 | def _set_call_pdb(self,val): |
| 1160 | |
| 1161 | if val not in (0,1,False,True): |
| 1162 | raise ValueError('new call_pdb value must be boolean') |
| 1163 | |
| 1164 | # store value in instance |
| 1165 | self._call_pdb = val |
| 1166 | |
| 1167 | # notify the actual exception handlers |
| 1168 | self.InteractiveTB.call_pdb = val |
| 1169 | |
| 1170 | call_pdb = property(_get_call_pdb,_set_call_pdb,None, |
| 1171 | 'Control auto-activation of pdb at exceptions') |
nothing calls this directly
no outgoing calls
no test coverage detected