Home | History | Annotate | Download | only in common_lib

Lines Matching refs:Parser

3 Cartesian configuration format file parser.
189 class Parser(object):
200 Initialize the parser and optionally parse a file.
669 parser = optparse.OptionParser('usage: %prog [options] filename '
672 parser.add_option("-v", "--verbose", dest="debug", action="store_true",
674 parser.add_option("-f", "--fullname", dest="fullname", action="store_true",
676 parser.add_option("-c", "--contents", dest="contents", action="store_true",
679 options, args = parser.parse_args()
681 parser.error("filename required")
683 c = Parser(args[0], debug=options.debug)