(self, py_db, seq, roffset, coffset, rows, cols, fmt, 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) |
| 342 | py_db.post_internal_command(int_cmd, thread_id) |
| 343 | |
| 344 | def request_load_full_value(self, py_db, seq, thread_id, frame_id, vars): |
| 345 | int_cmd = InternalLoadFullValue(seq, thread_id, frame_id, vars) |
no test coverage detected