Command to run pydoc on spack classes.

This commit is contained in:
Todd Gamblin 2013-10-11 23:23:41 -07:00
parent bb63327da0
commit 09fd944de5

View File

@ -0,0 +1,9 @@
description = "Run pydoc from within spack."
def setup_parser(subparser):
subparser.add_argument('entity', help="Run pydoc help on entity")
def doc(parser, args):
help(args.entity)