summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-11-04 11:46:17 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-11-04 11:46:17 (GMT)
commit8cd1c7681d86fd3d32096f2d927d3f5014d58c36 (patch)
tree52d64e583436f496e89b4c5dfdf0884e860cf3ba /Misc/NEWS
parentb87f82f8d46c8cd0fd4ab60f9680ca51ad3345bc (diff)
downloadcpython-8cd1c7681d86fd3d32096f2d927d3f5014d58c36.zip
cpython-8cd1c7681d86fd3d32096f2d927d3f5014d58c36.tar.gz
cpython-8cd1c7681d86fd3d32096f2d927d3f5014d58c36.tar.bz2
Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 565ebcd..8d6035e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
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.