summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-08-08 22:07:16 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-08-08 22:07:16 (GMT)
commiteb6f3ead00f1cccffafba03245861a4d6bd84346 (patch)
treeae40df9ad342570b5e149d4afeddc8a0e34fd284 /Misc
parentbddc9fe22bb5d78bfb3db891d3b2d56d963f6e04 (diff)
downloadcpython-eb6f3ead00f1cccffafba03245861a4d6bd84346.zip
cpython-eb6f3ead00f1cccffafba03245861a4d6bd84346.tar.gz
cpython-eb6f3ead00f1cccffafba03245861a4d6bd84346.tar.bz2
Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9f3d80a..7aba37d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #8530: Prevent stringlib fastsearch from reading beyond the front
+ of an array.
+
- Issue #5319: Print an error if flushing stdout fails at interpreter
shutdown.