:param scope: 'FRAME' or 'GLOBAL'
(self, py_db, seq, thread_id, frame_id, scope, attr, value)
| 325 | py_db.post_method_as_internal_command(thread_id, internal_reload_code, seq, module_name, filename) |
| 326 | |
| 327 | def request_change_variable(self, py_db, seq, thread_id, frame_id, scope, attr, value): |
| 328 | """ |
| 329 | :param scope: 'FRAME' or 'GLOBAL' |
| 330 | """ |
| 331 | py_db.post_method_as_internal_command(thread_id, internal_change_variable, seq, thread_id, frame_id, scope, attr, value) |
| 332 | |
| 333 | def request_get_variable(self, py_db, seq, thread_id, frame_id, scope, attrs): |
| 334 | """ |
no test coverage detected