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: Description of args to IMAP4.store() in imaplib
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: fdrake Nosy List: exarkun, fdrake, jafo
Priority: normal Keywords: patch

Created on 2004-12-13 00:14 by jafo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libimap.patch jafo, 2004-12-13 00:14 Patch to current CVS documentation.
Messages (3)
msg47374 - (view) Author: Sean Reifschneider (jafo) * (Python committer) Date: 2004-12-13 00:14
This patch includes a description of (as far as I can
tell) what the option message_set can be, and more
information about what the "command" option to store()
needs to be.  It also includes an example of using
store() to delete messages.  I also added a "close()"
before "logout()" in the example, since the
documentation says close is recommended before logout.
msg47375 - (view) Author: Jean-Paul Calderone (exarkun) * (Python committer) Date: 2004-12-18 19:55
Logged In: YES 
user_id=366566

message_set may also take forms including a wildcard upper
bound ("*") and define multiple non-continuous ranges (comma
delimited).  For example,

    # all messages from 3 up
    3:*

    # 3, 4, 5, 7, 8, 9
    3:5,7:9

This seems worthy of note in the docstring.
msg47376 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2005-01-19 04:50
Logged In: YES 
user_id=3066

Committed with suggested changes as Doc/lib/libimaplib.tex
revisions 1.32, 1.30.4.2, 1.24.12.1.
History
Date User Action Args
2022-04-11 14:56:08adminsetgithub: 41314
2004-12-13 00:14:15jafocreate