Internal: send a command and get the response plus following text. Same return value as _getlongresp().
(self, line, file=None)
| 543 | return self._getresp() |
| 544 | |
| 545 | def _longcmd(self, line, file=None): |
| 546 | """Internal: send a command and get the response plus following text. |
| 547 | Same return value as _getlongresp().""" |
| 548 | self._putcmd(line) |
| 549 | return self._getlongresp(file) |
| 550 | |
| 551 | def _longcmdstring(self, line, file=None): |
| 552 | """Internal: send a command and get the response plus following text. |
no test coverage detected