diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 18:27:06 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 18:27:06 (GMT) |
commit | 82a95277b8f8cb8245abdd14decff9d44d13d25c (patch) | |
tree | d223cd7cd9a745b25d5c364bbe26bec1140f2e0f /Misc/NEWS | |
parent | 4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |