diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 16:26:43 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 16:26:43 (GMT) |
commit | 4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae (patch) | |
tree | f67c47fff4c9a4f00a94f9c9522b4ead0c4fc19a /Misc | |
parent | 583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2 (diff) | |
download | cpython-4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae.zip cpython-4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae.tar.gz cpython-4e1de16f88cd8b99b2d154e647b63f2f6f8b58ae.tar.bz2 |
Issue #25402: in int-to-decimal-string conversion, reduce intermediate storage requirements and relax restriction on converting large integers. Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 beta 1 Core and Builtins ----------------- +- 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. + - Issue #27214: In long_invert, be more careful about modifying object returned by long_add, and remove an unnecessary check for small longs. Thanks Oren Milman for analysis and patch. |