summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
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.