:param scope: 'FRAME' or 'GLOBAL'
(self, py_db, seq, thread_id, frame_id, scope, attrs)
| 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 | """ |
| 335 | :param scope: 'FRAME' or 'GLOBAL' |
| 336 | """ |
| 337 | int_cmd = InternalGetVariable(seq, thread_id, frame_id, scope, attrs) |
| 338 | py_db.post_internal_command(int_cmd, thread_id) |
| 339 | |
| 340 | def request_get_array(self, py_db, seq, roffset, coffset, rows, cols, fmt, thread_id, frame_id, scope, attrs): |
| 341 | int_cmd = InternalGetArray(seq, roffset, coffset, rows, cols, fmt, thread_id, frame_id, scope, attrs) |
no test coverage detected