first commit
This commit is contained in:
2
test/data/compare/40_short_long/argparse.py
Normal file
2
test/data/compare/40_short_long/argparse.py
Normal file
@ -0,0 +1,2 @@
|
||||
parser.add_argument('-v', help='increase output verbosity', action='store_true')
|
||||
parser.add_argument('-i', '--int', help='integer', type=int)
|
4
test/data/compare/40_short_long/tiramisu.py
Normal file
4
test/data/compare/40_short_long/tiramisu.py
Normal file
@ -0,0 +1,4 @@
|
||||
int_long = IntOption('int', 'integer')
|
||||
parser.add_arguments([BoolOption('v', 'increase output verbosity', default=False),
|
||||
int_long,
|
||||
SymLinkOption('i', int_long)])
|
Reference in New Issue
Block a user