bpo-31507 Add docstring to parseaddr function in email.utils.parseaddr (gh-3647)
This commit is contained in:
parent
9abee722d4
commit
9e7b9b21fe
|
@ -215,6 +215,12 @@ def parsedate_to_datetime(data):
|
|||
|
||||
|
||||
def parseaddr(addr):
|
||||
"""
|
||||
Parse addr into its constituent realname and email address parts.
|
||||
|
||||
Return a tuple of realname and email address, unless the parse fails, in
|
||||
which case return a 2-tuple of ('', '').
|
||||
"""
|
||||
addrs = _AddressList(addr).addresslist
|
||||
if not addrs:
|
||||
return '', ''
|
||||
|
|
Loading…
Reference in New Issue