From 91266e0a7c58c589996c00427ed825490dd603d2 Mon Sep 17 00:00:00 2001 From: Forest Date: Sun, 22 Sep 2024 18:45:40 +0000 Subject: [PATCH] docs: refer to imaplib as "this module" Co-authored-by: Peter Bierma --- Doc/library/imaplib.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/imaplib.rst b/Doc/library/imaplib.rst index 5c999ab7e93f..6731c60228a0 100644 --- a/Doc/library/imaplib.rst +++ b/Doc/library/imaplib.rst @@ -325,7 +325,7 @@ An :class:`IMAP4` instance has the following methods: :class:`IMAP4_stream` on Windows. Response tuples produced by the iterator almost exactly match those - returned by other imaplib methods. The difference is that the tuple's + returned by other methods in this module. The difference is that the tuple's second member is a single response datum, rather than a list of data. Therefore, in a mailbox where calling ``M.response('EXISTS')`` would return ``('EXISTS', [b'1'])``, the idle iterator would produce -- 2.47.3