summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-02 21:22:49 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-02 21:22:49 +0300
commitd5aa9e692859531dfebd83c23302d5b058272d9e (patch)
treeeeb0be260023e792e1a6946f752e62c7355cea6b /ChangeLog
parent1b32113dc0ed20312b4bf0ac9cc6d00009579748 (diff)
downloadpylint-d5aa9e692859531dfebd83c23302d5b058272d9e.tar.gz
Add a new error, 'continue-in-finally'.
The error is emitted when the `continue` keyword is found inside a `finally` clause, which is a SyntaxError.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ec70e2..b3d306b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -233,6 +233,10 @@ ChangeLog for Pylint
for the --disable option. Closes issue #608.
* Improved the not-in-loop checker to properly detect more cases.
+
+ * Add a new error, 'continue-in-finally', which is emitted when
+ the `continue` keyword is found inside a `finally` clause, which
+ is a SyntaxError.