[imaplib] IMAP4.append returns a tuple (status, [data]) (#15183)

This commit is contained in:
savanto
2025-12-28 12:52:26 +00:00
committed by GitHub
parent 6b4691d044
commit 1662831023
+1 -1
View File
@@ -61,7 +61,7 @@ class IMAP4:
def socket(self) -> _socket: ...
def recent(self) -> _CommandResults: ...
def response(self, code: str) -> _CommandResults: ...
def append(self, mailbox: str, flags: str, date_time: str, message: ReadableBuffer) -> str: ...
def append(self, mailbox: str, flags: str, date_time: str, message: ReadableBuffer) -> tuple[str, _list[bytes]]: ...
def authenticate(self, mechanism: str, authobject: Callable[[bytes], bytes | None]) -> tuple[str, str]: ...
def capability(self) -> _CommandResults: ...
def check(self) -> _CommandResults: ...