summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-01 21:14:16 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-01 21:14:16 (GMT)
commite0793ba99293ac9df5e7e27d3f78cfc27113b359 (patch)
tree105cd42e802738644ef74b2963f25a2e2ec2d72b /Misc/NEWS
parent6cb5ad035b0eac63fc434c8b9625d28e2f336433 (diff)
downloadcpython-e0793ba99293ac9df5e7e27d3f78cfc27113b359.zip
cpython-e0793ba99293ac9df5e7e27d3f78cfc27113b359.tar.gz
cpython-e0793ba99293ac9df5e7e27d3f78cfc27113b359.tar.bz2
Issue #9737: Fix a crash when trying to delete a slice or an item from
a memoryview object.
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 2a959a4..92d858a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #9737: Fix a crash when trying to delete a slice or an item from
+ a memoryview object.
+
- Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()
are now removed, since their effect was inexistent in 3.x (the default
encoding is hardcoded to utf-8 and cannot be changed).