(self, i, attachments=False, cached=True)
| 226 | return sorted([int(i)-1 for i in response[0].split()], reverse=True) |
| 227 | |
| 228 | def read(self, i, attachments=False, cached=True): |
| 229 | return self.__getitem__(i, attachments, cached) |
| 230 | |
| 231 | def __getitem__(self, i, attachments=False, cached=True): |
| 232 | """ Returns the mail message with the given index. |
nothing calls this directly
no test coverage detected