(self, args, limit, timeout)
| 265 | raise |
| 266 | |
| 267 | async def __bind_execute(self, args, limit, timeout): |
| 268 | data, status, _ = await self.__do_execute( |
| 269 | lambda protocol: protocol.bind_execute( |
| 270 | self._state, args, '', limit, True, timeout)) |
| 271 | self._last_status = status |
| 272 | return data |
| 273 | |
| 274 | def _check_open(self, meth_name): |
| 275 | if self._state.closed: |
no test coverage detected