Send local command
(self)
| 438 | raise Vxi11Error("error remote: %d" % error) |
| 439 | |
| 440 | def local(self): |
| 441 | """Send local command |
| 442 | """ |
| 443 | |
| 444 | flags = 0 |
| 445 | |
| 446 | error = self.client.device_local(self.link, flags, self.lock_timeout, self.io_timeout) |
| 447 | |
| 448 | if error: |
| 449 | raise Vxi11Error("error local: %d" % error) |
| 450 | |
| 451 | def lock(self): |
| 452 | """Send lock command. |
nothing calls this directly
no test coverage detected