commit | 73c086389a81f81d20a9f87eb95cebd15b6ced58 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 26 12:08:37 2015 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Jan 26 12:08:37 2015 +0200 |
tree | edec20b1b3a510fb68401f7c8cda0138dbc44db8 | |
parent | 001320720090976b8a44b2aaf7c5a10ce66f40b9 [diff] [blame] |
Issue #18518: timeit now rejects statements which can't be compiled outside a function or a loop (e.g. "return" or "break").
diff --git a/Misc/NEWS b/Misc/NEWS index e018689..fa5acd8 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Library ------- +- Issue #18518: timeit now rejects statements which can't be compiled outside + a function or a loop (e.g. "return" or "break"). + - Issue #19996: Make :mod:`httplib` ignore headers with no name rather than assuming the body has started.