Strip \r as trailing whitespace as part of soft line endings.

Inspired by SF patch #408597 (Walter Dörwald): quopri, soft line
breaks and CRLF.  (I changed (" ", "\t", "\r") into " \t\r".)
This commit is contained in:
Guido van Rossum 2001-03-22 22:30:21 +00:00
parent 8652522442
commit 14b90a498f
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ def decode(input, output):
if n > 0 and line[n-1] == '\n':
partial = 0; n = n-1
# Strip trailing whitespace
while n > 0 and line[n-1] in (' ', '\t'):
while n > 0 and line[n-1] in " \t\r":
n = n-1
else:
partial = 1