summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-11-02 17:40:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-11-02 17:40:09 (GMT)
commitcc23154d020723dc85d055324861f6a8f54fe0f7 (patch)
tree4443bd4e56e69d5040a3d1df710cebb03447e0b0 /Misc
parent64f10d4f5e01ab119baa4d0a10403cec444810ce (diff)
downloadcpython-cc23154d020723dc85d055324861f6a8f54fe0f7.zip
cpython-cc23154d020723dc85d055324861f6a8f54fe0f7.tar.gz
cpython-cc23154d020723dc85d055324861f6a8f54fe0f7.tar.bz2
Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform.
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 8a5ca30..e2a7d73 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,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.