Return a count of messages in the mailbox.
(self)
| 1150 | return os.path.exists(os.path.join(self._path, str(key))) |
| 1151 | |
| 1152 | def __len__(self): |
| 1153 | """Return a count of messages in the mailbox.""" |
| 1154 | return len(list(self.iterkeys())) |
| 1155 | |
| 1156 | def _open_mh_sequences_file(self, text): |
| 1157 | mode = '' if text else 'b' |