summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-06 21:27:53 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-06 21:27:53 (GMT)
commit5504e893f84f07d5930094f07bcd479d859b5f0c (patch)
tree6e1f23c5a9e2ddfcb1a591fd97e07a120674e745 /Misc
parente6d4a9bdbc73a5314890d41a6e1e447ea848998f (diff)
downloadcpython-5504e893f84f07d5930094f07bcd479d859b5f0c.zip
cpython-5504e893f84f07d5930094f07bcd479d859b5f0c.tar.gz
cpython-5504e893f84f07d5930094f07bcd479d859b5f0c.tar.bz2
Issue #4509: bugs in bytearray with exports (buffer protocol)
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 9445457..81b0900 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Core and Builtins
growing read buffer. Fixed by using the same growth rate algorithm as
Python 2.x.
+- Issue #4509: Various issues surrounding resize of bytearray objects to
+ which there are buffer exports (e.g. memoryview instances).
+
Library
-------