Go to the documentation of this file.
3 Utility functions for the multilevel_processor.
6 __author__ =
'melliott'
8 TRUTH_VALUES = [
'1',
'ON',
'on',
'TRUE',
'true',
'YES',
'yes']
12 Returns True if opt_val_str is one the various possible values that OBPG
13 programs accept as true.
16 if opt_val_str
in TRUTH_VALUES:
def is_option_value_true(opt_val_str)