Patch #407434: add rfc822_escape utility function

This commit is contained in:
Andrew M. Kuchling 2001-03-22 03:03:41 +00:00
parent bc32024769
commit df66df0a28

View file

@ -443,3 +443,13 @@ byte_compile(files, optimize=%s, force=%s,
(file, cfile_base)
# byte_compile ()
def rfc822_escape (header):
"""Return a version of the string escaped for inclusion in an
RFC-822 header, by adding a space after each newline.
"""
header = string.rstrip(header)
header = string.replace(header, '\n', '\n ')
return header