(self, frame, name, value)
| 1118 | # convenience variables |
| 1119 | |
| 1120 | def set_convenience_variable(self, frame, name, value): |
| 1121 | if '__pdb_convenience_variables' not in frame.f_globals: |
| 1122 | frame.f_globals['__pdb_convenience_variables'] = {} |
| 1123 | frame.f_globals['__pdb_convenience_variables'][name] = value |
| 1124 | |
| 1125 | # Generic completion functions. Individual complete_foo methods can be |
| 1126 | # assigned below to one of these functions. |
no outgoing calls
no test coverage detected