From: Skip Montanaro Date: Mon, 26 Jan 2004 19:30:21 +0000 (+0000) Subject: add references between getopt and optparse docs X-Git-Tag: v2.4a1~899 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db8d1c26d32804816e20fb5ef94739208e6db3e8;p=thirdparty%2FPython%2Fcpython.git add references between getopt and optparse docs --- diff --git a/Doc/lib/libgetopt.tex b/Doc/lib/libgetopt.tex index 558aafacafcf..d8f1de73bc1d 100644 --- a/Doc/lib/libgetopt.tex +++ b/Doc/lib/libgetopt.tex @@ -143,3 +143,7 @@ def main(): if __name__ == "__main__": main() \end{verbatim} + +\begin{seealso} + \seemodule{optparse}{More object-oriented command line option parsing} +\end{seealso} diff --git a/Doc/lib/liboptparse.tex b/Doc/lib/liboptparse.tex index befc36110a1f..f2d2d8cb3c94 100644 --- a/Doc/lib/liboptparse.tex +++ b/Doc/lib/liboptparse.tex @@ -1709,3 +1709,7 @@ attribute; extend \class{OptionParser} to ensure that required options are present after parsing: \verbatiminput{required_2.py} + +\begin{seealso} + \seemodule{getopt}{More traditional Unix-style command line option parsing} +\end{seealso}