R. David Murray <rdmur...@bitdance.com> added the comment:

Juhana: thanks for the patch.  I see an issue with it, though.  What if the 
email address is something like john.si...@example.com?

My thought is that there are two ways to handle this.  Either we do a full RFC 
address parse in __getaddr and have it return the remainder of the line, or we 
parse from the right hand side looking for keword=value elements (which if I 
remember the RFC right have a pretty constrained syntax).  

Ideally I'd like to see a general parsing solution so we can handle other 
parameters in the future easily.  So perhaps a function like

  _getkeywords(arg) -> (arg, kwdict)

that parses the keywords off from the right and returns them in a dict, along 
with whatever non-keyword argument text is left.

The other path, parsing the address fully, could theoretically use the 
parseaddr utility from the email package, but I'm not sure if it will return 
the endpoint of an address embedded in a longer string.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue8739>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to