From 8f211ff0a9744f0b636be16b20fc86b945c18e8b Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 31 Oct 2024 07:34:24 +0200 Subject: [PATCH] Update Doc/library/getopt.rst Co-authored-by: Martin Panter --- Doc/library/getopt.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/getopt.rst b/Doc/library/getopt.rst index 6d41f3be3f14ca..247ed830d56aa6 100644 --- a/Doc/library/getopt.rst +++ b/Doc/library/getopt.rst @@ -17,7 +17,7 @@ The :mod:`getopt` module is a parser for command line options whose API is designed to be familiar to users of the C :c:func:`!getopt` function. Users who are unfamiliar with the C :c:func:`!getopt` function or who would like to write less code and get better help and error messages should consider using the -:mod:`optparse` or :mod:`argparse` module instead. +:mod:`optparse` or :mod:`argparse` modules instead. This module provides two functions and an exception: