summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-03 21:05:18 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-03 21:05:18 (GMT)
commit1e58ae44dfb60c6cb87a072498a68eb10e416279 (patch)
treef82653dae05c03bc3fd4a2936fe4bbeeb849d6b9 /Misc/NEWS
parent51f61b93db406a5d65ab964f0a6c0c0e8e8e7515 (diff)
parenta0b5c46fa22bbeac1b8ad9ed177f8285297de3cd (diff)
downloadcpython-1e58ae44dfb60c6cb87a072498a68eb10e416279.zip
cpython-1e58ae44dfb60c6cb87a072498a68eb10e416279.tar.gz
cpython-1e58ae44dfb60c6cb87a072498a68eb10e416279.tar.bz2
#16336: merge with 3.3.
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 9b27caf..16741cd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #16336: fix input checking in the surrogatepass error handler.
+ Patch by Serhiy Storchaka.
+
- Issue #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now
raises an error.