Searched refs:BOOLEAN_STATES (Results 1 – 3 of 3) sorted by relevance
46 CONFIGPARSER_BOOLEAN_STATES = configparser.ConfigParser.BOOLEAN_STATES
598 BOOLEAN_STATES = {'1': True, 'yes': True, 'true': True, 'on': True, variable in RawConfigParser1162 if value.lower() not in self.BOOLEAN_STATES:1164 return self.BOOLEAN_STATES[value.lower()]
675 .. attribute:: ConfigParser.BOOLEAN_STATES691 >>> custom.BOOLEAN_STATES = {'sure': True, 'nope': False}