diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 10:09:59 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-01-26 10:09:59 (GMT) |
commit | c959b0cd3061bdad445f839c13ecb69e86ec0b9c (patch) | |
tree | 63a4f4ca444f492aa2a28aef8c6d77c52ad1ed03 /Misc | |
parent | 230586739cc090ededbe45f101d8df75e5772455 (diff) | |
parent | 2bef58577f1caa293a4843f4bdf245407825a61a (diff) | |
download | cpython-c959b0cd3061bdad445f839c13ecb69e86ec0b9c.zip cpython-c959b0cd3061bdad445f839c13ecb69e86ec0b9c.tar.gz cpython-c959b0cd3061bdad445f839c13ecb69e86ec0b9c.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
@@ -218,6 +218,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. |