(self, client_id, callback=default_result_handler)
| 137 | self.callbacks.append(callback) |
| 138 | |
| 139 | def unblock(self, client_id, callback=default_result_handler): |
| 140 | self.buf += _buildResp("client", "unblock", str(client_id)) |
| 141 | self.callbacks.append(callback) |
| 142 | |
| 143 | def scan(self, iter, match=None, count=None, callback = default_result_handler): |
| 144 | args = ["scan", str(iter)] |
nothing calls this directly
no test coverage detected