summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Matthews <glenn@e-dad.net>2016-07-01 12:02:00 -0400
committerClaudiu Popa <pcmanticore@gmail.com>2016-07-02 12:27:06 +0100
commita068defc580b5a52e668d2dc710e37d03ed95a69 (patch)
treeb20501579ba794e95bf5a61b6bbdc1cf04053084
parent4e5c479c2627775e9a4f757e40747dde15ae4699 (diff)
downloadpylint-git-a068defc580b5a52e668d2dc710e37d03ed95a69.tar.gz
Fixed check_docs doc error (#735)
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--ChangeLog35
-rw-r--r--doc/extensions.rst2
3 files changed, 38 insertions, 1 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 55ef32748..d9b4af660 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -95,3 +95,5 @@ Order doesn't matter (not that much, at least ;)
Added check_raise_docs extension.
* Yannick Brehon: contributor.
+
+* Glenn Matthews: bug reports, occasional bug fixes
diff --git a/ChangeLog b/ChangeLog
index a0d604f8c..f9486a077 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@ ChangeLog for Pylint
- -- 1.6.0
+ * Fixed a documentation error for the check_docs extension. Fixes #735.
+
* Made the list of property-defining decorators configurable.
* Fix a bug where the top name of a qualified import was detected as unused variable.
@@ -196,6 +198,39 @@ ChangeLog for Pylint
Closes issue #714.
+2016-03-21 -- 1.5.5
+
+ * Let visit_importfrom from Python 3 porting checker be called when everything is disabled
+
+ Because the visit method was filtering the patterns it was expecting to be activated,
+ it didn't run when everything but one pattern was disabled, leading to spurious false
+ positives
+
+ Close #852
+
+ * Don't emit unsubscriptable-value for classes with unknown
+ base classes.
+
+ Close #776.
+
+ * Use an OrderedDict for storing the configuration elements
+
+ This fixes an issue related to impredictible order of the disable / enable
+ elements from a config file. In certain cases, the disable was coming before
+ the enable which resulted in classes of errors to be enabled, even though the intention
+ was to disable them. The best example for this was in the context of running multiple
+ processes, each one of it having different enables / disables that affected the output.
+
+ Close #815
+
+ * Don't consider bare and broad except handlers as ignoring NameError,
+ AttributeError and similar exceptions, in the context of checkers for
+ these issues.
+
+ Closes issue #826
+
+>>>>>>> 4881c97... Fixed check_docs doc error (#735)
+
2015-12-02 -- 1.5.1
* Don't emit unsubscriptable-object if the node is found
diff --git a/doc/extensions.rst b/doc/extensions.rst
index d6010f4c7..2f3aa1c47 100644
--- a/doc/extensions.rst
+++ b/doc/extensions.rst
@@ -143,4 +143,4 @@ still detected.
By default, omitting the parameter documentation of a function altogether is
tolerated without any warnings. If you want to switch off this behavior,
-set the option ``accept-no-param-doc`` to ``yes`` in your ``.pylintrc``.
+set the option ``accept-no-param-doc`` to ``no`` in your ``.pylintrc``.