Correction after second code path test.
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py
index d36f11d..9d55ca7 100644
--- a/Lib/ConfigParser.py
+++ b/Lib/ConfigParser.py
@@ -315,7 +315,7 @@
 
     def getboolean(self, section, option):
         v = self.get(section, option)
-        val = v.atoi()
+        val = int(v)
         if val not in (0, 1):
             raise ValueError, 'Not a boolean: %s' % v
         return val