From: Yury Selivanov Date: Sat, 13 Feb 2016 23:00:31 +0000 (-0500) Subject: Merge 3.5 (issue #25887) X-Git-Tag: v3.6.0a1~609 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e48b38dffdf09f42d43a1cd4a9308ec894b911b;p=python Merge 3.5 (issue #25887) --- 3e48b38dffdf09f42d43a1cd4a9308ec894b911b diff --cc Misc/NEWS index d51c3f3132,4243a050f1..895325e4fe --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -174,12 -69,10 +174,15 @@@ Core and Builtin - Issue #25660: Fix TAB key behaviour in REPL with readline. +- Issue #26288: Optimize PyLong_AsDouble. + +- Issues #26289 and #26315: Optimize floor and modulo division for + single-digit longs. Microbenchmarks show 2-2.5x improvement. Built-in + 'divmod' function is now also ~10% faster. + + - Issue #25887: Raise a RuntimeError when a coroutine object is awaited + more than once. + - Library -------