| 362 | |
| 363 | |
| 364 | class GroupList(TokenList): |
| 365 | |
| 366 | token_type = 'group-list' |
| 367 | |
| 368 | @property |
| 369 | def mailboxes(self): |
| 370 | if not self or self[0].token_type != 'mailbox-list': |
| 371 | return [] |
| 372 | return self[0].mailboxes |
| 373 | |
| 374 | @property |
| 375 | def all_mailboxes(self): |
| 376 | if not self or self[0].token_type != 'mailbox-list': |
| 377 | return [] |
| 378 | return self[0].all_mailboxes |
| 379 | |
| 380 | |
| 381 | class Group(TokenList): |
no outgoing calls
no test coverage detected
searching dependent graphs…