diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 10:09:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 10:09:17 (GMT) |
commit | 2bef58577f1caa293a4843f4bdf245407825a61a (patch) | |
tree | eab5b67eba2ad44a2e183962cfce9527cdfc8fcb /Misc | |
parent | 21d7533c4c13489b4b3baae59f9e25cd038fb16b (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |