summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-06-29 10:43:37 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-06-29 10:50:21 (GMT)
commitb6ee3d6b7a3eaf7af09dbe34879a821de997e215 (patch)
treeb8827c1d4bc63ae88c2c2b79c9f9da0d146c1620
parent4a27d9fb46bc71e1aa2ccb182196a2a27f456c15 (diff)
downloadcpython-b6ee3d6b7a3eaf7af09dbe34879a821de997e215.zip
cpython-b6ee3d6b7a3eaf7af09dbe34879a821de997e215.tar.gz
cpython-b6ee3d6b7a3eaf7af09dbe34879a821de997e215.tar.bz2
#9559: Don't call _pre_mailbox_hook more than once
-rw-r--r--Lib/mailbox.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index 8d3f8b6..73c43e2 100644
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -740,8 +740,11 @@ class _singlefileMailbox(Mailbox):
"""Append message to mailbox and return (start, stop) offsets."""
self._file.seek(0, 2)
before = self._file.tell()
- if len(self._toc) == 0:
- # This is the first message
+ if len(self._toc) == 0 and not self._pending:
+ # This is the first message, and the _pre_mailbox_hook
+ # hasn't yet been called. If self._pending is True,
+ # messages have been removed, so _pre_mailbox_hook must
+ # have been called already.
self._pre_mailbox_hook(self._file)
try:
self._pre_message_hook(self._file)