Skip to content

Commit b628bda

Browse files
committed
WIP
1 parent 906dae5 commit b628bda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

envelope/address.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ def _parseaddr(*args):
2424
# NOTE Python finally changed the old way of parsing wrong addresses.
2525
# We might start using strict=True (default) in the future.
2626
# README should reflect that.
27+
# TODO test
2728
if sys.version_info <= (3, 11):
2829
return parseaddr(*args)
2930
return parseaddr(*args, strict=False)
@@ -187,7 +188,7 @@ def remedy(s):
187188

188189
"""
189190
What happens when the string have more addresses?
190-
It also needs to get the address from string like "[email protected], <[email protected]>" so we need to
191+
It also needs to get the address from string like "[email protected], <[email protected]>" so we need to
191192
take care of the comma and semicolon as well.
192193
"""
193194
if s.group(1).strip() == s.group(2).strip():

0 commit comments

Comments
 (0)