summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-23 12:17:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-23 12:17:05 (GMT)
commitd3ff784f2d6ffaeee0e9aa1999d2e8ceed47ae82 (patch)
tree2198560cad1ef6289313a9b808997c803ebe03db /Misc
parentf8d7d41507d8c0855b58c9be14011381d03c5cde (diff)
downloadcpython-d3ff784f2d6ffaeee0e9aa1999d2e8ceed47ae82.zip
cpython-d3ff784f2d6ffaeee0e9aa1999d2e8ceed47ae82.tar.gz
cpython-d3ff784f2d6ffaeee0e9aa1999d2e8ceed47ae82.tar.bz2
Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead
of 1, 10, 100,... for autoranging.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 19689bf..9f37acd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Core and Builtins
Library
-------
+- Issue #28469: timeit now uses the sequence 1, 2, 5, 10, 20, 50,... instead
+ of 1, 10, 100,... for autoranging.
+
- Issue #28115: Command-line interface of the zipfile module now uses argparse.
Added support of long options.