diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2020-04-27 14:52:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 14:52:55 (GMT) |
commit | c5c42815ecb560bbf34db99b0e15fe9b604be889 (patch) | |
tree | 819b18345d9d082af9ed6db4e51e9ab566a31538 /Doc/whatsnew | |
parent | 91a5ae18351027867e99c96db5ea235d9c42e47a (diff) | |
download | cpython-c5c42815ecb560bbf34db99b0e15fe9b604be889.zip cpython-c5c42815ecb560bbf34db99b0e15fe9b604be889.tar.gz cpython-c5c42815ecb560bbf34db99b0e15fe9b604be889.tar.bz2 |
bpo-40375: Implement imaplib.IMAP4.unselect (GH-19712)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 728e600..0b15ec7 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -320,6 +320,13 @@ with this change. The overridden methods of :class:`~imaplib.IMAP4_SSL` and :class:`~imaplib.IMAP4_stream` were applied to this change. (Contributed by Dong-hee Na in :issue:`38615`.) +:meth:`imaplib.IMAP4.unselect` is added. +:meth:`imaplib.IMAP4.unselect` frees server's resources associated with the +selected mailbox and returns the server to the authenticated +state. This command performs the same actions as :meth:`imaplib.IMAP4.close`, except +that no messages are permanently removed from the currently +selected mailbox. (Contributed by Dong-hee Na in :issue:`40375`.) + importlib --------- |