Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8077f2e

Browse filesBrowse files
docs: improve style in an example
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent f41f2bb commit 8077f2e
Copy full SHA for 8077f2e

File tree

1 file changed

+2
-3
lines changed
Filter options

1 file changed

+2
-3
lines changed

‎Doc/library/imaplib.rst

Copy file name to clipboardExpand all lines: Doc/library/imaplib.rst
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,9 +333,8 @@ An :class:`IMAP4` instance has the following methods:
333333

334334
Example::
335335

336-
with M.idle(dur=29*60) as idler:
337-
for response in idler:
338-
typ, datum = response
336+
with M.idle(dur=29 * 60) as idler:
337+
for type, datum in idler:
339338
print(typ, datum)
340339

341340
('EXISTS', b'1')

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.