Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method.
diff --git a/Misc/NEWS b/Misc/NEWS
index 565ebcd..8d6035e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@
 Core and Builtins
 -----------------
 
+- Issue #16402: When slicing a range, fix shadowing of exceptions from
+  __index__.
+
 - Issue #16336: fix input checking in the surrogatepass error handler.
   Patch by Serhiy Storchaka.