diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 21:14:16 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 21:14:16 (GMT) |
commit | e0793ba99293ac9df5e7e27d3f78cfc27113b359 (patch) | |
tree | 105cd42e802738644ef74b2963f25a2e2ec2d72b /Misc/NEWS | |
parent | 6cb5ad035b0eac63fc434c8b9625d28e2f336433 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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). |