summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-08-29 18:27:06 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-08-29 18:27:06 (GMT)
commit82a95277b8f8cb8245abdd14decff9d44d13d25c (patch)
treed223cd7cd9a745b25d5c364bbe26bec1140f2e0f /Misc/NEWS
parent4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae (diff)
downloadcpython-82a95277b8f8cb8245abdd14decff9d44d13d25c.zip
cpython-82a95277b8f8cb8245abdd14decff9d44d13d25c.tar.gz
cpython-82a95277b8f8cb8245abdd14decff9d44d13d25c.tar.bz2
Issue #27870: A left shift of zero by a large integer no longer attempts to allocate large amounts of memory.
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 9873abb..5ce3c2c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 1
Core and Builtins
-----------------
+- Issue #27870: A left shift of zero by a large integer no longer attempts
+ to allocate large amounts of memory.
+
- Issue #25402: In int-to-decimal-string conversion, improve the estimate
of the intermediate memory required, and remove an unnecessarily strict
overflow check. Patch by Serhiy Storchaka.