diff options
author | Raymond Hettinger <python@rcn.com> | 2005-02-08 15:39:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-02-08 15:39:11 (GMT) |
commit | 508e81eda0fea2d8c8679d21887ee08c94da8eaa (patch) | |
tree | 05af8c0b776e167037be8db9b645a93fad377c25 | |
parent | a9620d1e2b9501481aefdb1be1960585eb701534 (diff) | |
download | cpython-508e81eda0fea2d8c8679d21887ee08c94da8eaa.zip cpython-508e81eda0fea2d8c8679d21887ee08c94da8eaa.tar.gz cpython-508e81eda0fea2d8c8679d21887ee08c94da8eaa.tar.bz2 |
Convert splitlines to for-loop (handles case where input does not have a trailing newline).
-rw-r--r-- | Lib/rfc822.py | 8 |
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 |