imaplib: Add new functions from Python 3.9 (#4596)

Add imaplib.IMAP4.unselect()
This commit is contained in:
karl ding
2020-10-02 19:58:24 -07:00
committed by GitHub
parent d140885898
commit ce3c9e05c0

View File

@@ -93,6 +93,8 @@ class IMAP4:
def thread(self, threading_algorithm: str, charset: str, *search_criteria: str) -> _CommandResults: ...
def uid(self, command: str, *args: str) -> _CommandResults: ...
def unsubscribe(self, mailbox: str) -> _CommandResults: ...
if sys.version_info >= (3, 9):
def unselect(self) -> _CommandResults: ...
def xatom(self, name: str, *args: str) -> _CommandResults: ...
def print_log(self) -> None: ...