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

Class MailboxList

Lib/email/_header_value_parser.py:350–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348 return self[0].all_mailboxes
349
350class MailboxList(TokenList):
351
352 token_type = 'mailbox-list'
353
354 @property
355 def mailboxes(self):
356 return [x for x in self if x.token_type=='mailbox']
357
358 @property
359 def all_mailboxes(self):
360 return [x for x in self
361 if x.token_type in ('mailbox', 'invalid-mailbox')]
362
363
364class GroupList(TokenList):

Callers 1

get_mailbox_listFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…