diff options
| author | Eli Bendersky <eliben@gmail.com> | 2012-08-15 14:50:52 +0300 |
|---|---|---|
| committer | Eli Bendersky <eliben@gmail.com> | 2012-08-15 14:50:52 +0300 |
| commit | f748a3773fd40dd91195fc2fef2cac2f973baaf8 (patch) | |
| tree | 2f26efbb8f49897dad34d1a5f2a7020ff7419197 /Lib/mailbox.py | |
| parent | 8f773493b6c27a9b6bc3a1aceac107a0f3d669c8 (diff) | |
| parent | 3d12c4317c2970d65bf30e941070017a8d1be210 (diff) | |
| download | cpython-git-f748a3773fd40dd91195fc2fef2cac2f973baaf8.tar.gz | |
merge heads in 3.2 branch
Diffstat (limited to 'Lib/mailbox.py')
| -rw-r--r-- | Lib/mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index 8b00460ec6..73fe7d6483 100644 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -1443,9 +1443,9 @@ class Babyl(_singlefileMailbox): line = line[:-1] + b'\n' self._file.write(line.replace(b'\n', linesep)) if line == b'\n' or not line: - self._file.write(b'*** EOOH ***' + linesep) if first_pass: first_pass = False + self._file.write(b'*** EOOH ***' + linesep) message.seek(original_pos) else: break |
