--- c:/users/botjan~1/appdata/local/temp/thg.b4iqin/docs.1.69405/Doc/library/argparse.rst sob apr 16 21:42:53 2011 +++ C:/Users/Boštjan/Desktop/docs/Doc/library/argparse.rst sob apr 16 21:39:38 2011 @@ -2,7 +2,7 @@ =============================================================================== .. module:: argparse - :synopsis: Command-line option and argument parsing library. + :synopsis: Command-line option and argument-parsing library. .. moduleauthor:: Steven Bethard .. sectionauthor:: Steven Bethard @@ -12,7 +12,7 @@ -------------- -The :mod:`argparse` module makes it easy to write user friendly command line +The :mod:`argparse` module makes it easy to write user-friendly command-line interfaces. The program defines what arguments it requires, and :mod:`argparse` will figure out how to parse those out of :data:`sys.argv`. The :mod:`argparse` module also automatically generates help and usage messages and issues errors @@ -610,7 +610,7 @@ * default_ - The value produced if the argument is absent from the command line. - * type_ - The type to which the command-line arg should be converted. + * type_ - The type to which the command-line argument should be converted. * choices_ - A container of the allowable values for the argument.