summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMarcin Wieczorek <marcin@marcin.co>2023-03-08 07:25:28 (GMT)
committerGitHub <noreply@github.com>2023-03-08 07:25:28 (GMT)
commit061325e0d2bbec6ff89d03f527c91dc7bfa14003 (patch)
tree6e90256f7af692e5978152179254e081041d6067 /Doc/library
parent8fd55dd78ec0f66a375f1c0a4b649871ee182929 (diff)
downloadcpython-061325e0d2bbec6ff89d03f527c91dc7bfa14003.zip
cpython-061325e0d2bbec6ff89d03f527c91dc7bfa14003.tar.gz
cpython-061325e0d2bbec6ff89d03f527c91dc7bfa14003.tar.bz2
Fix style in argparse.rst (#101733)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/argparse.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index 34b4c61..ee68ac5 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -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