diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 15:40:29 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2016-08-29 15:40:29 (GMT) |
commit | 583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2 (patch) | |
tree | 6d8282d92bd4c33a7052d38cf36d9e14f1e2e4cd /Misc/NEWS | |
parent | 2be278c70c128f67e6fa7a1790543a8990f384b8 (diff) | |
download | cpython-583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2.zip cpython-583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2.tar.gz cpython-583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2.tar.bz2 |
Issue #27214: Fix potential bug and remove useless optimization in long_invert. Thanks Oren Milman.
Diffstat (limited to 'Misc/NEWS')
-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 #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. + - Issue #27506: Support passing the bytes/bytearray.translate() "delete" argument by keyword. |