summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-11-18 22:19:37 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-11-18 22:19:37 (GMT)
commit7cfe7ea745d6222103c32c089e591229de2c2817 (patch)
tree4d2abf8d9d6b3bbe1b09093d502ddaa3f6c7ef9b /Misc
parent273c233c78d36f65059342981dcdc5b212a7e558 (diff)
downloadcpython-7cfe7ea745d6222103c32c089e591229de2c2817.zip
cpython-7cfe7ea745d6222103c32c089e591229de2c2817.tar.gz
cpython-7cfe7ea745d6222103c32c089e591229de2c2817.tar.bz2
#4317: Fix an Array Bounds Read in imageop.rgb2rgb8.
Will backport to 2.4.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1012541..d84ec84 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4317: Fixed a crash in the imageop.rgb2rgb8() function.
+
- Issue #4230: If ``__getattr__`` is a descriptor, it now functions correctly.
- Issue #4048: The parser module now correctly validates relative imports.