#6428: py3k requires that __bool__ return a bool (and not an int)
Fix the error message and the documentation.
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e04011..7cc3f36 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@
 Core and Builtins
 -----------------
 
+- Issue #6428: Since Python 3.0, the __bool__ method must return a bool
+  object, and not an int.  Fix the corresponding error message, and the
+  documentation.
+
 - The deprecated PyCObject has been removed.
 
 - Issue #6347: Include inttypes.h as well as stdint.h in pyport.h.