summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-11 19:49:11 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-11 19:49:11 +0300
commitbeae668caff82f4e10eeec0a49c81aebbff7db2d (patch)
tree91fb0960e7ee4caa34df391c3930f57fd380d54d /ChangeLog
parent27b06a7f43447b00bb35ccd053dd005bd960624b (diff)
downloadpylint-beae668caff82f4e10eeec0a49c81aebbff7db2d.tar.gz
The --zope flag is deprecated and it is slated for removal in Pylint 1.6.
The reason behind this removal is the fact that it's a specialized flag and there are solutions for the original problem: use --generated-members with the members that causes problems when using Zope or add AST transforms tailored to the zope project. Closes issue #570.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b3d306b..4c9c284 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -237,6 +237,18 @@ ChangeLog for Pylint
* Add a new error, 'continue-in-finally', which is emitted when
the `continue` keyword is found inside a `finally` clause, which
is a SyntaxError.
+
+ * The --zope flag is deprecated and it is slated for removal
+ in Pylint 1.6.
+
+ The reason behind this removal is the fact that it's a specialized
+ flag and there are solutions for the original problem:
+ use --generated-members with the members that causes problems
+ when using Zope or add AST transforms tailored to the zope
+ project.
+
+ At the same time, --include-ids and --symbols will also be removed
+ in Pylint 1.6. Closes issue #570.