Commit 9e7b9b21 authored by Rohit Balasubramanian's avatar Rohit Balasubramanian Committed by R. David Murray

bpo-31507 Add docstring to parseaddr function in email.utils.parseaddr (gh-3647)

parent 9abee722
......@@ -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 '', ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment