Internal: process a STAT, NEXT or LAST command.
(self, line)
| 727 | return resp, art_num, message_id |
| 728 | |
| 729 | def _statcmd(self, line): |
| 730 | """Internal: process a STAT, NEXT or LAST command.""" |
| 731 | resp = self._shortcmd(line) |
| 732 | return self._statparse(resp) |
| 733 | |
| 734 | def stat(self, message_spec=None): |
| 735 | """Process a STAT command. Argument: |
no test coverage detected