Lines Matching refs:getboolean
157 provide :meth:`~ConfigParser.getboolean`. This method is case-insensitive and
163 >>> topsecret.getboolean('ForwardX11')
165 >>> config['bitbucket.org'].getboolean('ForwardX11')
167 >>> config.getboolean('bitbucket.org', 'Compression')
170 Apart from :meth:`~ConfigParser.getboolean`, config parsers also
215 :meth:`~ConfigParser.getboolean` methods, for example:
221 >>> topsecret.getboolean('BatchMode', fallback=True)
224 >>> topsecret.getboolean('BatchMode', fallback=True)
657 :meth:`~ConfigParser.getboolean` are implemented. Should other getters be
677 By default when using :meth:`~ConfigParser.getboolean`, config parsers
687 >>> custom['section1'].getboolean('funky')
692 >>> custom['section1'].getboolean('funky')
811 # getint() and getboolean() also do this for their respective types
818 if config.getboolean('Section1', 'a_bool'):
1089 .. method:: getboolean(section, option, *, raw=False, vars=None[, fallback])