[issue6897] imaplib fails during login

2010-01-15 Thread R. David Murray
Changes by R. David Murray : -- priority: -> normal resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Imap lib implicit conversion from bytes to string type: -> behavior ___ Python tracker

[issue6897] imaplib fails during login

2009-09-14 Thread Marcin Bachry
Marcin Bachry added the comment: Looks like duplicate of #6734. -- nosy: +marcin.bachry ___ Python tracker ___ ___ Python-bugs-list ma

[issue6897] imaplib fails during login

2009-09-12 Thread geremy condra
New submission from geremy condra : Getting the following issue- this code: #! /usr/bin/env python3 import getpass, imaplib M = imaplib.IMAP4_SSL("imap.gmail.com") M.login(, ) M.select() typ, data = M.search(None, 'ALL') for num in data[0].split(): typ, data = M.fetch(num, '(RFC822)')