bpo-36348: IMAP4.logout() doesn't ignore exc (GH-12411)
The imap.IMAP4.logout() method no longer ignores silently arbitrary
exceptions.
Changes:
* The IMAP4.logout() method now expects a "BYE" untagged response,
rather than relying on _check_bye() which raises a self.abort()
exception.
* IMAP4.__exit__() now does nothing if the client already logged out.
* Add more debug info if test_logout() tests fail.
diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst
index d0709f8..f027f82 100644
--- a/Doc/library/imaplib.rst
+++ b/Doc/library/imaplib.rst
@@ -327,6 +327,9 @@
Shutdown connection to server. Returns server ``BYE`` response.
+ .. versionchanged:: 3.8
+ The method no longer ignores silently arbitrary exceptions.
+
.. method:: IMAP4.lsub(directory='""', pattern='*')