[New-bugs-announce] [issue1284] typo in lib doc 7.3.2.1 MaildirMessage

Eric Wollesen report at bugs.python.org
Tue Oct 16 03:07:10 CEST 2007


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 <report at bugs.python.org>
<http://bugs.python.org/issue1284>
__________________________________


More information about the New-bugs-announce mailing list