diff -r fa745ed89b7a Lib/email/feedparser.py --- a/Lib/email/feedparser.py Thu Aug 23 15:53:45 2012 +0200 +++ b/Lib/email/feedparser.py Wed Sep 05 22:30:47 2012 -0700 @@ -30,7 +30,7 @@ NLCRE = re.compile('\r\n|\r|\n') NLCRE_bol = re.compile('(\r\n|\r|\n)') NLCRE_eol = re.compile('(\r\n|\r|\n)\Z') -NLCRE_crack = re.compile('(\r\n|\r|\n)') +NLCRE_crack = NLCRE_bol # RFC 2822 $3.6.8 Optional fields. ftext is %d33-57 / %d59-126, Any character # except controls, SP, and ":". headerRE = re.compile(r'^(From |[\041-\071\073-\176]{1,}:|[\t ])')