[issue504152] rfc822 long header continuation broken

2010-08-17 Thread Kenneth Arnold
Changes by Kenneth Arnold : -- nosy: -kcarnold ___ Python tracker <http://bugs.python.org/issue504152> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4806] Function calls taking a generator as star argument can mask TypeErrors in the generator

2009-06-02 Thread Kenneth Arnold
Kenneth Arnold added the comment: I can confirm that (a) this exact behavior is happening and (b) it quite confused me (most of the time it works!). What would be a "good" TypeError? I'd vote for generators to be explicitly supported even if it required a special case. Thanks!

[issue504152] rfc822 long header continuation broken

2008-08-20 Thread Kenneth Arnold
Kenneth Arnold <[EMAIL PROTECTED]> added the comment: This issue still seems to be present in Python 2.5's email module. feedparser.py line 444-445 says: # XXX reconsider the joining of folded lines lhdr = EMPTYSTRING.join(lastvalue)[:-1].rstrip('\r\n') I think that sho