summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-11-02 17:41:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-11-02 17:41:56 (GMT)
commit8a03896cace7cf2b8634c1409722fe6d3f9c8bcd (patch)
tree23f5e2d94a09abf5a2c80d095c26bd7f5e391dac /Misc/NEWS
parentc58e3a449bfcf42b4d3ec0495960472adaaa952e (diff)
parentcc23154d020723dc85d055324861f6a8f54fe0f7 (diff)
downloadcpython-8a03896cace7cf2b8634c1409722fe6d3f9c8bcd.zip
cpython-8a03896cace7cf2b8634c1409722fe6d3f9c8bcd.tar.gz
cpython-8a03896cace7cf2b8634c1409722fe6d3f9c8bcd.tar.bz2
Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform.
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 56e1da4..0c85390 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff
+ bytes on a 32-bit platform.
+
- Issue #22653: Fix an assertion failure in debug mode when doing a reentrant
dict insertion in debug mode.