8000 Doc: fixed style in library/argparse.rst by MarcinWieczorek · Pull Request #101733 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Doc: fixed style in library/argparse.rst #101733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 8, 2023
Merged
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
Next Next commit
Doc: fixed style in library/argparse.rst
  • Loading branch information
MarcinWieczorek committed Feb 9, 2023
commit c9f8d30e1ae16fdba066e294338e5dc244a6ff12
6 changes: 3 additions & 3 deletions Doc/library/argparse.rst
67F5
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ around an instance of :class:`argparse.ArgumentParser`. It is a container for
argument specifications and has options that apply to the parser as whole::

parser = argparse.ArgumentParser(
prog = 'ProgramName',
description = 'What the program does',
epilog = 'Text at the bottom of help')
prog='ProgramName',
description='What the program does',
epilog='Text at the bottom of help')

The :meth:`ArgumentParser.add_argument` method attaches individual argument
specifications to the parser. It supports positional arguments, options that
Expand Down
0