|
ATTRS = [ ' action ' , ' type ' , ' dest ' , ' default ' , ' nargs ' , ' const ' ...
|
|
ACTIONS = ( ' store ' , ' store_const ' , ' store_true ' , ' store_false ' ...
|
|
STORE_ACTIONS = ( ' store ' , ' store_const ' , ' store_true ' , ' store_ ...
|
|
TYPED_ACTIONS = ( ' store ' , ' append ' , ' callback ' )
|
|
ALWAYS_TYPED_ACTIONS = ( ' store ' , ' append ' )
|
|
CONST_ACTIONS = ( ' store_const ' , ' append_const ' )
|
|
TYPES = ( ' string ' , ' int ' , ' long ' , ' float ' , ' complex ' , ' choice ' )
|
|
TYPE_CHECKER = {"int": check_builtin, "long": check_builtin, "...
|
|
CHECK_METHODS = [_check_action, _check_type, _check_choice, _c...
|