Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Doc/library/getopt.rst
Co-authored-by: Carol Willing <[email protected]>
  • Loading branch information
serhiy-storchaka and willingc authored Oct 30, 2024
commit 9744ded874a41b328ef8c37332d1dbfa0321b23e
2 changes: 1 addition & 1 deletion Doc/library/getopt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ and more informative help and error messages by using the :mod:`optparse` module
opts, args = parser.parse_args()
process(args, output=opts.output, verbose=opts.verbose)

A roughtly equivalent command line interface could also be produced by using
A roughly equivalent command line interface could also be produced by using
the :mod:`argparse` module::

import argparse
Expand Down