print_help: Printing an usage message from an OptionParser object
Description
print_help print an usage message from an OptionParser object,
usually called by parse_args when it encounters a help option.Arguments
object
A OptionParser instance.
Value
print_help uses the cat function to print out a usage message. It returns invisible(NULL).
References
Python's optparse library, which this package is based on,
is described here: http://docs.python.org/library/optparse.htmlSee Also
OptionParser
{parse_args}
{OptionParser}