Return a count of messages in the mailbox.
(self)
| 685 | return key in self._toc |
| 686 | |
| 687 | def __len__(self): |
| 688 | """Return a count of messages in the mailbox.""" |
| 689 | self._lookup() |
| 690 | return len(self._toc) |
| 691 | |
| 692 | def lock(self): |
| 693 | """Lock the mailbox.""" |