cpython/Lib/email
R. David Murray 45e0e1444b Merged revisions 81675 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81675 | r.david.murray | 2010-06-03 11:43:20 -0400 (Thu, 03 Jun 2010) | 10 lines

  #5610: use \Z not $ so we don't eat extra chars when body part ends with \r\n.

  If a body part ended with \r\n, feedparser, using '$' to terminate its
  search for the newline, would match on the \r\n, and think that it needed
  to strip two characters in order to account for the line end before the
  boundary.  That made it chop one too many characters off the end of
  the body part.  Using \Z makes the match correct.

  Patch and test by Tony Nelson.
........
2010-06-16 02:19:40 +00:00
..
mime
test Merged revisions 81675 via svnmerge from 2010-06-16 02:19:40 +00:00
__init__.py
_parseaddr.py
base64mime.py
charset.py Fix Charset.body_encode to encode to output_charset before calling base64mime. 2010-06-03 01:58:28 +00:00
encoders.py #4768: store base64 encoded email body parts as text, not binary. 2010-06-04 16:11:08 +00:00
errors.py
feedparser.py Merged revisions 81675 via svnmerge from 2010-06-16 02:19:40 +00:00
generator.py Merged revisions 78274 via svnmerge from 2010-02-21 04:39:40 +00:00
header.py
iterators.py
message.py Merged revisions 80062 via svnmerge from 2010-04-14 18:59:18 +00:00
parser.py
quoprimime.py
utils.py Merged revisions 77209,77229,77359-77360,77371 via svnmerge from 2010-01-09 18:45:30 +00:00