Fixed the docstring for calendar.isleap() function.
Thanks BoĊĦtjan Mejak for the patch.
diff --git a/Lib/calendar.py b/Lib/calendar.py
index 0c1fdad..12bd1a8 100644
--- a/Lib/calendar.py
+++ b/Lib/calendar.py
@@ -95,7 +95,7 @@
 
 
 def isleap(year):
-    """Return 1 for leap years, 0 for non-leap years."""
+    """Return True for leap years, False for non-leap years."""
     return year % 4 == 0 and (year % 100 != 0 or year % 400 == 0)