summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-26 10:09:17 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-26 10:09:17 (GMT)
commit2bef58577f1caa293a4843f4bdf245407825a61a (patch)
treeeab5b67eba2ad44a2e183962cfce9527cdfc8fcb /Misc
parent21d7533c4c13489b4b3baae59f9e25cd038fb16b (diff)
downloadcpython-2bef58577f1caa293a4843f4bdf245407825a61a.zip
cpython-2bef58577f1caa293a4843f4bdf245407825a61a.tar.gz
cpython-2bef58577f1caa293a4843f4bdf245407825a61a.tar.bz2
Issue #18518: timeit now rejects statements which can't be compiled outside
a function or a loop (e.g. "return" or "break").
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 c30c9d5..198092c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,9 @@ Core and Builtins
Library
-------
+- Issue #18518: timeit now rejects statements which can't be compiled outside
+ a function or a loop (e.g. "return" or "break").
+
- Issue #23094: Fixed readline with frames in Python implementation of pickle.
- Issue #23268: Fixed bugs in the comparison of ipaddress classes.