diff options
author | Petri Lehtinen <petri@digip.org> | 2012-06-15 17:50:51 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2012-06-15 17:59:31 (GMT) |
commit | 02653f1b111c8b9f64de8960d9a55d4f5821e257 (patch) | |
tree | 5455e6956ffeac421aebd3b7d9ec20ee8e40241c /Lib/mailbox.py | |
parent | 13775221e06f86b319f9591946b7ff9fb49bb907 (diff) | |
download | cpython-02653f1b111c8b9f64de8960d9a55d4f5821e257.zip cpython-02653f1b111c8b9f64de8960d9a55d4f5821e257.tar.gz cpython-02653f1b111c8b9f64de8960d9a55d4f5821e257.tar.bz2 |
#15036: Make a repeated changes and flushes work with single-file mailboxes
Diffstat (limited to 'Lib/mailbox.py')
-rw-r--r-- | Lib/mailbox.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index a677729..2be4c83 100644 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -675,6 +675,7 @@ class _singlefileMailbox(Mailbox): new_file.write(buffer) new_toc[key] = (new_start, new_file.tell()) self._post_message_hook(new_file) + self._file_length = new_file.tell() except: new_file.close() os.remove(new_file.name) |