Internal: send a command and get the response. Same return value as _getresp().
(self, line)
| 537 | return resp, lines |
| 538 | |
| 539 | def _shortcmd(self, line): |
| 540 | """Internal: send a command and get the response. |
| 541 | Same return value as _getresp().""" |
| 542 | self._putcmd(line) |
| 543 | return self._getresp() |
| 544 | |
| 545 | def _longcmd(self, line, file=None): |
| 546 | """Internal: send a command and get the response plus following text. |