New submission from Eric Wollesen: get_subdir( ) Return either "new" (if the message should be stored in the new subdirectory) or "cur" (if the message should be stored in the cur subdirectory). Note: A message is typically moved from new to cur after its mailbox has been accessed, whether or not the message is has been read. A message msg has been read if "S" not in msg.get_flags() is True.
---- The last sentence above is incorrect. The "not" should be removed. It should read: A message msg has been read if "S" in msg.get_flags() is True. ---------- components: Documentation messages: 56481 nosy: encoded severity: minor status: open title: typo in lib doc 7.3.2.1 MaildirMessage type: rfe versions: Python 2.5 __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1284> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com