-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[doc] Add a check for changelogs and fix the issues encountered (#6735)
- Loading branch information
1 parent
c2b9144
commit 214201a
Showing
36 changed files
with
1,105 additions
and
680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Release date: 2014-04-30 | |
* Restore the ability to specify the init-hook option via the | ||
configuration file, which was accidentally broken in 1.2.0. | ||
|
||
* Add a new warning [bad-continuation] for badly indentend continued | ||
* Add a new warning [bad-continuation] for badly indented continued | ||
lines. | ||
|
||
* Emit [assignment-from-none] when the function contains bare returns. | ||
|
@@ -25,7 +25,8 @@ Release date: 2014-04-30 | |
* Fix explicit checking of python script (1.2 regression, #219) | ||
|
||
* Restore --init-hook, renamed accidentally into --init-hooks in 1.2.0 | ||
(#211) | ||
|
||
Closes #211 | ||
|
||
* Add 'indexing-exception' warning, which detects that indexing | ||
an exception occurs in Python 2 (behaviour removed in Python 3). | ||
|
@@ -73,7 +74,8 @@ Release date: 2014-04-18 | |
configurable; contributed by [email protected]. | ||
|
||
* ensure init-hooks is evaluated before other options, notably load-plugins | ||
(#166) | ||
|
||
Closes #166 | ||
|
||
* Python 2.5 support restored: fixed small issues preventing pylint to run | ||
on python 2.5. Bitbucket issues #50 and #62. | ||
|
@@ -83,9 +85,9 @@ Release date: 2014-04-18 | |
assignments. | ||
|
||
* Add new warning, 'bad-reversed-sequence', for checking that the | ||
reversed() builtin receive a sequence (implements __getitem__ and __len__, | ||
reversed() builtin receive a sequence (implements ``__getitem__`` and ``__len__``, | ||
without being a dict or a dict subclass) or an instance which implements | ||
__reversed__. | ||
``__reversed__``. | ||
|
||
* Mark ``file`` as a bad function when using python2 (closes #8). | ||
|
||
|
@@ -101,26 +103,35 @@ Release date: 2014-04-18 | |
|
||
* Add a new warning 'abstract-class-instantiated' for checking | ||
that abstract classes created with ``abc`` module and | ||
with abstract methods are instantied. | ||
with abstract methods are instantiated. | ||
|
||
* Do not warn about 'return-arg-in-generator' in Python 3.3+. | ||
|
||
* Do not warn about 'abstract-method' when the abstract method | ||
is implemented through assignment (#155). | ||
is implemented through assignment | ||
|
||
* Improve cyclic import detection in the case of packages, patch by Buck | ||
Golemon | ||
Closes #155 | ||
|
||
* Improve cyclic import detection in the case of packages, patch by Buck Golemon | ||
|
||
* Add new warnings for checking proper class __slots__: | ||
``invalid-slots-object`` and ``invalid-slots``. | ||
|
||
* Search for rc file in `~/.config/pylintrc` if `~/.pylintrc` | ||
doesn't exists (#121) | ||
doesn't exists | ||
|
||
Closes #121 | ||
|
||
* Don't register the new style checker w/ python >= 3 | ||
|
||
* Fix unused-import false positive w/ augment assignment | ||
|
||
Closes #78 | ||
|
||
* Don't register the newstyle checker w/ python >= 3 | ||
* Fix access-member-before-definition false negative wrt aug assign | ||
|
||
* Fix unused-import false positive w/ augment assignment (#78) | ||
Closes #164 | ||
|
||
* Fix access-member-before-definition false negative wrt aug assign (#164) | ||
* Do not attempt to analyze non python file, e.g. .so file | ||
|
||
* Do not attempt to analyze non python file, e.g. .so file (#122) | ||
Closes #122 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.