summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-03-17 20:54:50 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-03-17 20:54:50 (GMT)
commit302dbc6792895de98ab14b382e7a35f512396ac7 (patch)
tree9c83183ef5b8dc84fa2d29b15b6ef3e3beb726c3 /Misc
parentf024d263b4af789af0eb3727417bbeec582f69eb (diff)
downloadcpython-302dbc6792895de98ab14b382e7a35f512396ac7.zip
cpython-302dbc6792895de98ab14b382e7a35f512396ac7.tar.gz
cpython-302dbc6792895de98ab14b382e7a35f512396ac7.tar.bz2
Issue #18983: Allow selection of output units in timeit.
This allows manual selection of a specific unit such as usecs rather than the use of a heuristic. This is intended to aid machine processing of timeit output. Patch by Serhiy Storchaka.
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 d3d4d8f..dcc988f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #18983: Allow selection of output units in timeit.
+ Patch by Serhiy Storchaka.
+
- Issue #23631: Fix traceback.format_list when a traceback has been mutated.
- Issue #23568: Add rdivmod support to MagicMock() objects.