From 280488b9a3b5cc213d01aae794751b89144f8609 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Fri, 23 Aug 2002 18:19:30 +0000 Subject: Whitespace normalization. --- Lib/email/Parser.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Lib/email/Parser.py') diff --git a/Lib/email/Parser.py b/Lib/email/Parser.py index b9d3ed3645..a2ac576436 100644 --- a/Lib/email/Parser.py +++ b/Lib/email/Parser.py @@ -129,7 +129,7 @@ class Parser: # boundary. separator = '--' + boundary payload = fp.read() - # We use an RE here because boundaries can have trailing + # We use an RE here because boundaries can have trailing # whitespace. mo = re.search( r'(?P' + re.escape(separator) + r')(?P[ \t]*)', @@ -176,15 +176,15 @@ class Parser: terminator = len(payload) # We split the textual payload on the boundary separator, which # includes the trailing newline. If the container is a - # multipart/digest then the subparts are by default message/rfc822 - # instead of text/plain. In that case, they'll have a optional - # block of MIME headers, then an empty line followed by the + # multipart/digest then the subparts are by default message/rfc822 + # instead of text/plain. In that case, they'll have a optional + # block of MIME headers, then an empty line followed by the # message headers. parts = re.split( linesep + re.escape(separator) + r'[ \t]*' + linesep, payload[start:terminator]) for part in parts: - if isdigest: + if isdigest: if part[0] == linesep: # There's no header block so create an empty message # object as the container, and lop off the newline so -- cgit v1.2.1