Issue 2025:  Add index() and count() methods to tuple so that it will follow
the ABC for collections.Sequence.
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ba1678..9ef3407 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and Builtins
 -----------------
 
+- Issue #2025 :  Add tuple.count() and tuple.index() methods to comply with
+  the collections.Sequence API.
+
 - Fixed multiple reinitialization of the Python interpreter. The small int
   list in longobject.c has caused a seg fault during the third finalization.