[Python-checkins] r58545 - python/trunk/Doc/library/mailbox.rst

georg.brandl python-checkins at python.org
Fri Oct 19 19:38:49 CEST 2007


Author: georg.brandl
Date: Fri Oct 19 19:38:49 2007
New Revision: 58545

Modified:
   python/trunk/Doc/library/mailbox.rst
Log:
#1284: "S" means "seen", not unread.


Modified: python/trunk/Doc/library/mailbox.rst
==============================================================================
--- python/trunk/Doc/library/mailbox.rst	(original)
+++ python/trunk/Doc/library/mailbox.rst	Fri Oct 19 19:38:49 2007
@@ -806,7 +806,7 @@
 
       A message is typically moved from :file:`new` to :file:`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``.
+      ``msg`` has been read if ``"S" in msg.get_flags()`` is ``True``.
 
 
 .. method:: MaildirMessage.set_subdir(subdir)


More information about the Python-checkins mailing list