Return a count of messages in the mailbox.
(self)
| 692 | return key in self._toc |
| 693 | |
| 694 | def __len__(self): |
| 695 | """Return a count of messages in the mailbox.""" |
| 696 | self._lookup() |
| 697 | return len(self._toc) |
| 698 | |
| 699 | def lock(self): |
| 700 | """Lock the mailbox.""" |