commit | bc0e9108261693b6278687f4fb4709ff76c2e543 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Thu Apr 04 22:55:58 2002 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Thu Apr 04 22:55:58 2002 +0000 |
tree | afef5d4734034ed0268950cf06321aefd4154ff3 | |
parent | 2f486b7fa6451b790b154e6e4751239d69d46952 [diff] [blame] |
Convert a pile of obvious "yes/no" functions to return bool.
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index bdce25e..fe97c9e 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py
@@ -374,9 +374,9 @@ """Remove a file section.""" if self.__sections.has_key(section): del self.__sections[section] - return 1 + return True else: - return 0 + return False # # Regular expressions for parsing section headers and options. Note a