summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-30 16:44:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-30 16:44:55 (GMT)
commit1b560cbf850fc1c8165b3505c4a137de0abf3668 (patch)
tree9c046095572c0e9b298cfa0c2902a912d458fbee /Misc
parent8c7ed012b87db4de66da61c2f7c0a11a61277384 (diff)
parentf28fa66351fe93b3fcdc98c7f35f05573ea93df2 (diff)
downloadcpython-1b560cbf850fc1c8165b3505c4a137de0abf3668.zip
cpython-1b560cbf850fc1c8165b3505c4a137de0abf3668.tar.gz
cpython-1b560cbf850fc1c8165b3505c4a137de0abf3668.tar.bz2
Issue #5633: Fixed timeit when the statement is a string and the setup is not.
Refactored timeit.__init__ for unified handling of stmt and setup parameters.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d6ff9e4..2d41812 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
+- Issue #5633: Fixed timeit when the statement is a string and the setup is not.
+
- Issue #24326: Fixed audioop.ratecv() with non-default weightB argument.
Original patch by David Moore.