Searched refs:argparser (Results 1 – 2 of 2) sorted by relevance
6 argparser = argparse.ArgumentParser(description="Compile all .py files to .mpy recursively") variable7 argparser.add_argument("-o", "--out", help="output directory (default: input dir)")8 argparser.add_argument("--target", help="select MicroPython target config")9 argparser.add_argument(12 argparser.add_argument("dir", help="input directory")13 args = argparser.parse_args()
110 argparser = argparse.ArgumentParser( variable113 argparser.add_argument("--stdin", action="store_true", help="read list of tests from stdin")114 argparser.add_argument("--exclude", action="append", help="exclude test by name")115 args = argparser.parse_args()
Completed in 5 milliseconds