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 8c05452 commit 16495e1Copy full SHA for 16495e1
imapclient/testable_imapclient.py
@@ -30,6 +30,8 @@ def __init__(self, *args: Any, **kwargs: Any):
30
self.use_uid = True
31
self.sent = b"" # Accumulates what was given to send()
32
self.tagged_commands: Dict[Any, Any] = {}
33
+ self.untagged_responses: Dict[Any, Any] = {}
34
+ self.capabilities = []
35
self._starttls_done = False
36
37
def send(self, data: bytes) -> None:
0 commit comments