Skip to content

Commit 72912b8

Browse files
committed
Italicise parameter reference
1 parent 8886cc0 commit 72912b8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/library/mailbox.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -589,25 +589,25 @@ Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
589589

590590
.. method:: get_bytes(key, from_=False)
591591

592-
Note: This method has an extra parameter (from_) compared with other classes.
592+
Note: This method has an extra parameter (*from_*) compared with other classes.
593593
The first line of an mbox file entry is the unix 'From ' line.
594-
If from_ is False, the first line of the file is dropped.
594+
If *from_* is False, the first line of the file is dropped.
595595

596596
.. method:: get_file(key, from_=False)
597597

598598
Using the file after calling :meth:`~Mailbox.flush` or
599599
:meth:`~Mailbox.close` on the :class:`!mbox` instance may yield
600600
unpredictable results or raise an exception.
601601

602-
Note: This method has an extra parameter (from_) compared with other classes.
602+
Note: This method has an extra parameter (*from_*) compared with other classes.
603603
The first line of an mbox file entry is the unix 'From ' line.
604-
If from_ is False, the first line of the file is dropped.
604+
If *from_* is False, the first line of the file is dropped.
605605

606606
.. method:: get_string(key, from_=False)
607607

608-
Note: This method has an extra parameter (from_) compared with other classes.
608+
Note: This method has an extra parameter (*from_*) compared with other classes.
609609
The first line of an mbox file entry is the unix 'From ' line.
610-
If from_ is False, the first line of the file is dropped.
610+
If *from_* is False, the first line of the file is dropped.
611611

612612
.. method:: lock()
613613
unlock()

0 commit comments

Comments
 (0)