summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-08-29 15:40:29 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-08-29 15:40:29 (GMT)
commit583c6e860c1f9eee81ebf09fd87e0f921e8c0dd2 (patch)
tree6d8282d92bd4c33a7052d38cf36d9e14f1e2e4cd /Misc/NEWS
parent2be278c70c128f67e6fa7a1790543a8990f384b8 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 36cf589..32144d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.