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