first commit

This commit is contained in:
2018-11-29 22:10:08 +01:00
parent 9376c866d6
commit 226a509d53
35 changed files with 526 additions and 0 deletions

View File

@ -0,0 +1 @@
parser.add_argument('-f', '--foo', help='foo help')

View File

@ -0,0 +1,3 @@
str_long = StrOption('foo', 'foo help')
str_short = SymLinkOption('f', str_long)
parser.add_arguments([str_long, str_short])