imaplib.pyi: Add missing imaplib.IMAP4.enable() (#3314)

Closes: #3313
This commit is contained in:
Utkarsh Gupta
2019-10-07 08:18:48 +05:30
committed by Jelle Zijlstra
parent 717cd1f96f
commit 447691cf46

View File

@@ -52,6 +52,8 @@ class IMAP4:
def create(self, mailbox: str) -> CommandResults: ...
def delete(self, mailbox: str) -> CommandResults: ...
def deleteacl(self, mailbox: str, who: str) -> CommandResults: ...
if sys.version_info >= (3, 5):
def enable(self, capability: str) -> CommandResults: ...
def expunge(self) -> CommandResults: ...
def fetch(self, message_set: str, message_parts: str) -> CommandResults: ...
def getacl(self, mailbox: str) -> CommandResults: ...