Process a HELP command. Argument: - file: Filename string or file object to store the result in Returns: - resp: server response if successful - list: list of strings returned by the server in response to the HELP command
(self, *, file=None)
| 707 | return resp, int(count), int(first), int(last), name |
| 708 | |
| 709 | def help(self, *, file=None): |
| 710 | """Process a HELP command. Argument: |
| 711 | - file: Filename string or file object to store the result in |
| 712 | Returns: |
| 713 | - resp: server response if successful |
| 714 | - list: list of strings returned by the server in response to the |
| 715 | HELP command |
| 716 | """ |
| 717 | return self._longcmdstring('HELP', file) |
| 718 | |
| 719 | def _statparse(self, resp): |
| 720 | """Internal: parse the response line of a STAT, NEXT, LAST, |
no test coverage detected