Lines Matching refs:DEFAULT
18 action="store_false", dest="verbose", default=True,
160 formatting help; by default IndentedHelpFormatter is used.
182 text to replace with each option's default value, "%default"
183 by default. Set to false value to disable default value expansion.
219 self.default_tag = "%default"
440 # Not supplying a default is different from a default of None,
442 NO_DEFAULT = ("NO", "DEFAULT")
454 default : any
470 'default',
615 if attr == 'default':
642 # No type given? "string" is the most sensible default.
924 dictionary mapping option destination names to default
949 self.defaults = {} # maps option dest -> default value
1029 if option.dest is not None: # option has a dest, we need a default
1030 if option.default is not NO_DEFAULT:
1031 self.defaults[option.dest] = option.default
1161 if true, option default values are processed similarly to option
1164 default value is a string). (This really only matters if you
1290 default behavior. See also disable_interspersed_args() and the
1325 default = defaults.get(option.dest)
1326 if isbasestring(default):
1328 defaults[option.dest] = option.check_value(opt_str, default)
1373 Parse the command-line options found in 'args' (default:
1375 by default prints the usage message to stderr and calls
1414 like). Default implementation just returns the passed-in
1596 'file' (default stdout). Any occurrence of the string "%prog" in
1614 'file' (default stdout). As with print_usage(), any occurrence
1664 help text provided with them, to 'file' (default stdout).