MCPcopy Index your code
hub / github.com/python/cpython / GroupList

Class GroupList

Lib/email/_header_value_parser.py:364–378  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

362
363
364class 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
381class Group(TokenList):

Callers 1

get_group_listFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…