Send remote command.
(self)
| 427 | raise Vxi11Error("error clearing: %d" % error) |
| 428 | |
| 429 | def remote(self): |
| 430 | """Send remote command. |
| 431 | """ |
| 432 | |
| 433 | flags = 0 |
| 434 | |
| 435 | error = self.client.device_remote(self.link, flags, self.lock_timeout, self.io_timeout) |
| 436 | |
| 437 | if error: |
| 438 | raise Vxi11Error("error remote: %d" % error) |
| 439 | |
| 440 | def local(self): |
| 441 | """Send local command |
nothing calls this directly
no test coverage detected