summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:57:00 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-06-25 18:57:00 +0300
commit8f550e18295a573a4e9a106cd9af3cac944af7c6 (patch)
treefd52cd168dd508287fd5a5f289f6a1d6cbefd6ed /ChangeLog
parent993a174a3b8cf7df95122d3e49a1a07c0966dd9f (diff)
downloadpylint-8f550e18295a573a4e9a106cd9af3cac944af7c6.tar.gz
Detect a couple of objects which can't be base classes (bool, slice, range and memoryview, which weren't detected until now).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 68571ce..800e8c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -184,6 +184,9 @@ ChangeLog for Pylint
* Add a new error, 'invalid-star-assignment-target', emitted when
a starred expression (*x) is used as the lhs side of an assignment,
as in `*x = [1, 2]`. This is not a SyntaxError on Python 3 though.
+
+ * Detect a couple of objects which can't be base classes (bool,
+ slice, range and memoryview, which weren't detected until now).