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: bug in test_imaplib
Type: behavior Stage: resolved
Components: Library (Lib), Tests Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: pitrou Nosy List: pitrou
Priority: normal Keywords:

Created on 2010-11-16 00:09 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg121255 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-11-16 00:09
The following warning suggests the test is wrong:

c:\buildslave-py3k\3.x.curtin-win2008-amd64\build\lib\test\test_imaplib.py:231: BytesWarning: Comparison between bytes and string
  self.assertFalse('LOGINDISABLED' in self.server.capabilities)
msg121306 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-11-16 17:55
This was a real bug in IMAP.starttls() actually. Fixed in r86485.
History
Date User Action Args
2022-04-11 14:57:08adminsetgithub: 54638
2010-11-16 17:55:52pitrousetstatus: open -> closed
resolution: fixed
messages: + msg121306

stage: needs patch -> resolved
2010-11-16 00:09:11pitroucreate