slackbuilds_ponce/libraries/argparse
Robby Workman 84d2168900 Various: Set perms to 0644 on all SlackBuild scripts
These will (ideally, assuming we remember when generating tarballs)
still be mode 0755 inside the tarballs, but we would prefer to have
them mode 0644 on the server.  It's probably not really important,
but just call us OCD like that.  ;-)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2010-06-04 01:53:53 -05:00
..
argparse.info
argparse.SlackBuild Various: Set perms to 0644 on all SlackBuild scripts 2010-06-04 01:53:53 -05:00
README
slack-desc

The argparse python module provides an easy declarative interface for 
creating command line tools.  Argparse knows how to parse the arguments 
and flags from sys.argv, convert arg strings into objects for your program,
format and print informative help messages, and much more...

The argparse module improves on the standard library optparse module in
a number of ways including handling positional arguments, support for 
sub-commands, allowing alternative option prefixes like + and /,
handling zero-or-more and one-or-more style arguments, producing more 
informative usage messages, and providing a much simpler interface for 
custom types and actions.