diff --git a/Lib/quopri.py b/Lib/quopri.py index 6d7cdd613fd..edee3d99160 100755 --- a/Lib/quopri.py +++ b/Lib/quopri.py @@ -61,6 +61,8 @@ def write(s, output=output, lineEnd='\n'): # that trailing character encoded. if s and s[-1:] in ' \t': output.write(s[:-1] + quote(s[-1]) + lineEnd) + elif s == '.': + output.write(quote(s) + lineEnd) else: output.write(s + lineEnd) diff --git a/Misc/ACKS b/Misc/ACKS index 6569766ea99..f09e77c84c6 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -180,6 +180,7 @@ Gary Herron Bernhard Herzog Magnus L. Hetland Kevan Heydon +Jason Hildebrand Konrad Hinsen David Hobley Tim Hochberg