Update doc for getboolean() to match code (ie, returning True/False)

Convert remaining uses of 1/0 to True/False
This commit is contained in:
Neal Norwitz 2002-12-17 01:56:47 +00:00
parent 212b43f90c
commit f680cc460c
1 changed files with 8 additions and 8 deletions

View File

@ -52,7 +52,7 @@ ConfigParser -- responsible for for parsing a list of
The filename defaults to fp.name; it is only used in error The filename defaults to fp.name; it is only used in error
messages (if fp has no `name' attribute, the string `<???>' is used). messages (if fp has no `name' attribute, the string `<???>' is used).
get(section, option, raw=0, vars=None) get(section, option, raw=False, vars=None)
return a string value for the named option. All % interpolations are return a string value for the named option. All % interpolations are
expanded in the return values, based on the defaults passed into the expanded in the return values, based on the defaults passed into the
constructor and the DEFAULT section. Additional substitutions may be constructor and the DEFAULT section. Additional substitutions may be
@ -67,10 +67,10 @@ ConfigParser -- responsible for for parsing a list of
getboolean(section, options) getboolean(section, options)
like get(), but convert value to a boolean (currently case like get(), but convert value to a boolean (currently case
insensitively defined as 0, false, no, off for 0, and 1, true, insensitively defined as 0, false, no, off for False, and 1, true,
yes, on for 1). Returns 0 or 1. yes, on for True). Returns False or True.
items(section, raw=0, vars=None) items(section, raw=False, vars=None)
return a list of tuples with (name, value) for each option return a list of tuples with (name, value) for each option
in the section. in the section.
@ -308,7 +308,7 @@ class RawConfigParser:
option = self.optionxform(option) option = self.optionxform(option)
return option in self._defaults return option in self._defaults
elif section not in self._sections: elif section not in self._sections:
return 0 return False
else: else:
option = self.optionxform(option) option = self.optionxform(option)
return (option in self._sections[section] return (option in self._sections[section]
@ -393,7 +393,7 @@ class RawConfigParser:
optname = None optname = None
lineno = 0 lineno = 0
e = None # None, or an exception e = None # None, or an exception
while 1: while True:
line = fp.readline() line = fp.readline()
if not line: if not line:
break break
@ -459,7 +459,7 @@ class RawConfigParser:
class ConfigParser(RawConfigParser): class ConfigParser(RawConfigParser):
def get(self, section, option, raw=0, vars=None): def get(self, section, option, raw=False, vars=None):
"""Get an option value for a given section. """Get an option value for a given section.
All % interpolations are expanded in the return values, based on the All % interpolations are expanded in the return values, based on the
@ -490,7 +490,7 @@ class ConfigParser(RawConfigParser):
else: else:
return self._interpolate(section, option, value, d) return self._interpolate(section, option, value, d)
def items(self, section, raw=0, vars=None): def items(self, section, raw=False, vars=None):
"""Return a list of tuples with (name, value) for each option """Return a list of tuples with (name, value) for each option
in the section. in the section.