diff options
author | Petri Lehtinen <petri@digip.org> | 2011-11-05 07:45:53 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2011-11-05 07:46:10 (GMT) |
commit | 8c481b6212d2158bef06eea1f1ed32a015cfc486 (patch) | |
tree | c4182a5e11a67bb19a954486bc719c1ec6271406 /Lib/mailbox.py | |
parent | f16a350bafbf617f876bfbbd4b1c8f2636efacff (diff) | |
parent | 8c482ee95564f04df01fc856f313ff8c98846718 (diff) | |
download | cpython-8c481b6212d2158bef06eea1f1ed32a015cfc486.zip cpython-8c481b6212d2158bef06eea1f1ed32a015cfc486.tar.gz cpython-8c481b6212d2158bef06eea1f1ed32a015cfc486.tar.bz2 |
Fix Maildir initialization so that maildir contents are read correctly.
Closes #13254.
Diffstat (limited to 'Lib/mailbox.py')
-rw-r--r-- | Lib/mailbox.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py index 82d6571..325b9c9 100644 --- a/Lib/mailbox.py +++ b/Lib/mailbox.py @@ -273,11 +273,9 @@ class Maildir(Mailbox): else: raise NoSuchMailboxError(self._path) self._toc = {} - self._toc_mtimes = {} - for subdir in ('cur', 'new'): - self._toc_mtimes[subdir] = os.path.getmtime(self._paths[subdir]) - self._last_read = time.time() # Records last time we read cur/new - self._skewfactor = 0.1 # Adjust if os/fs clocks are skewing + self._toc_mtimes = {'cur': 0, 'new': 0} + self._last_read = 0 # Records last time we read cur/new + self._skewfactor = 0.1 # Adjust if os/fs clocks are skewing def add(self, message): """Add message and return assigned key.""" |