Home
last modified time | relevance | path

Searched refs:BOOLEAN_STATES (Results 1 – 3 of 3) sorted by relevance

/external/yapf/yapf/yapflib/
Dpy3compat.py46 CONFIGPARSER_BOOLEAN_STATES = configparser.ConfigParser.BOOLEAN_STATES
/external/python/cpython3/Lib/
Dconfigparser.py598 BOOLEAN_STATES = {'1': True, 'yes': True, 'true': True, 'on': True, variable in RawConfigParser
1162 if value.lower() not in self.BOOLEAN_STATES:
1164 return self.BOOLEAN_STATES[value.lower()]
/external/python/cpython3/Doc/library/
Dconfigparser.rst675 .. attribute:: ConfigParser.BOOLEAN_STATES
691 >>> custom.BOOLEAN_STATES = {'sure': True, 'nope': False}