summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-04 10:35:47 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-04 10:35:47 +0300
commita0e6e67af6f05b81fe7575d4a372b2ea4b20fe46 (patch)
treefbba45546b1abbbce84d31477b0497d560134197 /ChangeLog
parenta4e62fb0938f1fb737d0c4e7e36ec218e00e3972 (diff)
downloadpylint-a0e6e67af6f05b81fe7575d4a372b2ea4b20fe46.tar.gz
Allow a bare raise only inside an except clause.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog2
1 files changed, 1 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8678b84..e969f62 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -267,7 +267,7 @@ ChangeLog for Pylint
* Add a new error, 'misplaced-bare-raise'.
- The error is used when a bare raise is not used inside a try suite.
+ The error is used when a bare raise is not used inside an except clause.
This can generate a RuntimeError in Python, if there are no active exceptions
to be reraised. While it works in Python 2 due to the fact that the exception
leaks outside of the except block, it's nevertheless a behaviour that