diff options
author | Skip Montanaro <skip@pobox.com> | 2004-01-26 19:30:21 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-01-26 19:30:21 (GMT) |
commit | db8d1c26d32804816e20fb5ef94739208e6db3e8 (patch) | |
tree | 38e8d62d1eca1459113bfaaca73b1244a24c983b /Doc/lib | |
parent | 4e9e7a61404ea168ffa30f5ef5203d3e0cb3d172 (diff) | |
download | cpython-db8d1c26d32804816e20fb5ef94739208e6db3e8.zip cpython-db8d1c26d32804816e20fb5ef94739208e6db3e8.tar.gz cpython-db8d1c26d32804816e20fb5ef94739208e6db3e8.tar.bz2 |
add references between getopt and optparse docs
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libgetopt.tex | 4 | ||||
-rw-r--r-- | Doc/lib/liboptparse.tex | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Doc/lib/libgetopt.tex b/Doc/lib/libgetopt.tex index 558aafa..d8f1de7 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 befc361..f2d2d8c 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} |