This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typo in lib doc 7.3.2.1 MaildirMessage
Type: enhancement Stage:
Components: Documentation Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: encoded, georg.brandl
Priority: normal Keywords:

Created on 2007-10-16 01:07 by encoded, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg56481 - (view) Author: Eric Wollesen (encoded) Date: 2007-10-16 01:07
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.
msg56558 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2007-10-19 17:39
Thanks, fixed in r58545, r58546 (2.5).
History
Date User Action Args
2022-04-11 14:56:27adminsetgithub: 45625
2007-10-19 17:39:32georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg56558
nosy: + georg.brandl
2007-10-16 01:07:10encodedcreate