We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717cd1f commit 447691cCopy full SHA for 447691c
1 file changed
stdlib/2and3/imaplib.pyi
@@ -52,6 +52,8 @@ class IMAP4:
52
def create(self, mailbox: str) -> CommandResults: ...
53
def delete(self, mailbox: str) -> CommandResults: ...
54
def deleteacl(self, mailbox: str, who: str) -> CommandResults: ...
55
+ if sys.version_info >= (3, 5):
56
+ def enable(self, capability: str) -> CommandResults: ...
57
def expunge(self) -> CommandResults: ...
58
def fetch(self, message_set: str, message_parts: str) -> CommandResults: ...
59
def getacl(self, mailbox: str) -> CommandResults: ...
0 commit comments