Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/optparse.rst
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ Other actions
Some other actions supported by :mod:`optparse` are:

``"store_const"``
store a constant value
store a constant value, pre-set via :attr:`Option.const`

``"append"``
append this option's argument to a list
Expand Down Expand Up @@ -925,7 +925,7 @@ The canonical way to create an :class:`Option` instance is with the
store this option's argument (default)

``"store_const"``
store a constant value
store a constant value, pre-set via :attr:`Option.const`

``"store_true"``
store ``True``
Expand All @@ -937,7 +937,7 @@ The canonical way to create an :class:`Option` instance is with the
append this option's argument to a list

``"append_const"``
append a constant value to a list
append a constant value to a list, pre-set via :attr:`Option.const`

``"count"``
increment a counter by one
Expand Down