SF #754014:  list.index() should accept optional start, end arguments

Also, modified UserList.index() to match and expanded the related tests.
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ee2046..b8b9a9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and builtins
 -----------------
 
+- list.index() now accepts optional start and stop arguments.  Similar
+  changes were made to UserList.index(). SF feature request 754014.
+
 - SF patch 751998 fixes an unwanted side effect of the previous fix
   for SF bug 742860 (the next item).