Files
python-build/pythonbrew/baseparser.py
T
2011-05-24 18:12:31 +09:00

14 lines
391 B
Python

from optparse import OptionParser
from pythonbrew.define import VERSION
parser = OptionParser(usage="%prog COMMAND [OPTIONS]",
prog="pythonbrew",
version=VERSION,
add_help_option=False)
parser.add_option(
'-h', '--help',
dest='help',
action='store_true',
help='Show help')
parser.disable_interspersed_args()