Create new mailbox. (typ, [data]) = .create(mailbox)
(self, mailbox)
| 568 | |
| 569 | |
| 570 | def create(self, mailbox): |
| 571 | """Create new mailbox. |
| 572 | |
| 573 | (typ, [data]) = <instance>.create(mailbox) |
| 574 | """ |
| 575 | return self._simple_command('CREATE', mailbox) |
| 576 | |
| 577 | |
| 578 | def delete(self, mailbox): |
nothing calls this directly
no test coverage detected