imaplib.IMAP4: Bug in implementation

Max M maxm at mxm.dk
Wed Mar 17 09:07:47 EST 2004


Oliver Kurz wrote:

 > I call the uid like this
 >
 > uid("STORE",uid,"+FLAGS(\SEEN)")


Are you shure you don't mean::

     uid("STORE",uid,"+FLAGS(\\SEEN)")

You are trying to create a non-existent special character, escaping the 
s in your example.

I am not quite shure how Python reacts to that.


regards Max M



More information about the Python-list mailing list