summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/rfc822.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index 4448e7d..871a049 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -393,8 +393,8 @@ class Message:
del self[name] # Won't fail if it doesn't exist
self.dict[name.lower()] = value
text = name + ": " + value
- self.headers.extend(text.splitlines(True))
- self.headers.append('\n')
+ for line in text.split("\n"):
+ self.headers.append(line + "\n")
def __delitem__(self, name):
"""Delete all occurrences of a specific header, if it is present."""
@@ -423,8 +423,8 @@ class Message:
return self.dict[lowername]
else:
text = name + ": " + default
- self.headers.extend(text.splitlines(True))
- self.headers.append('\n')
+ for line in text.split("\n"):
+ self.headers.append(line + "\n")
self.dict[lowername] = default
return default