- Dec 15, 2017
-
-
Claudiu Popa authored
-
hippo91 authored
Pylint doesn't take anymore the default rcfile if the rcfile specified on the command line doesn't exist (#1768)
- Dec 11, 2017
- Nov 14, 2017
-
- Nov 13, 2017
-
-
hippo91 authored
-
- Nov 11, 2017
-
-
ttenhoeve-aa authored
-
Daniel Miller authored
-
Martin authored
Shallow copy of os.environ doesn't work as people may expect. os.environ is not a dict object but rather a proxy object, so any changes made on the copy may have unexpected effects on os.environ Instead of copy.copy(os.environ) method os.environ.copy() should be used. Message id is: `shallow-copy-environ` See https://bugs.python.org/issue15373 for details. Resolves: #1301
-
Daniel Miller authored
-
- Nov 05, 2017
-
-
Bryce Guinta authored
* Extend trailing-comma-tuple check to more complex assignments The previous implementation was too conservative with looking for previous tokens associated with assignment: It looked only at the immediately previous token, causing 'a = (5),' to not be caught. Now The current implementation backtracks to the start of the line to find an assignment substring. Fixes issue #1713
-
- Oct 12, 2017
-
-
hippo91 authored
-
- Sep 30, 2017
- Sep 27, 2017
-
-
Krzysztof Czapla authored
Closes #1420
-
- Sep 26, 2017
-
-
Claudiu Popa authored
Close #1673
-
hippo91 authored
Close #1267
-
- Sep 20, 2017
-
-
Łukasz Rogalski authored
Closes #1013
-
- Sep 17, 2017
-
-
hippo91 authored
* Add of a new regexp for Keyword Args|Arguments|Parameters. Extending the list of entries in match_param_docs method with the results of self._parse_section(new_regexp) * Add of 2 unittests for Google docstring with Args and Keyword Args. * Add of ChangeLog and whatsnew entries
-
- Sep 15, 2017
-
-
Claudiu Popa authored
-
ahirnish authored
Adding a warning about keyword argument appearing before variable args list in the function definition (#1636)
-
- Sep 14, 2017
-
-
Łukasz Rogalski authored
Closes #574
-
- Aug 16, 2017
-
-
Erik Wright authored
A PR was merged that introduced a changelog entry in a previous release. This PR places the entry in the correct (upcoming) release section.
-
- Aug 12, 2017
-
-
Łukasz Rogalski authored
Added ``suggestion-mode`` configuration flag. When flag is enabled, informational message is emitted instead of cryptic error message for attributes accessed on c-extensions. Close #1466
-
- Aug 09, 2017
-
-
Claudiu Popa authored
Close #1176
-
Claudiu Popa authored
-
- Aug 07, 2017
-
-
Łukasz Rogalski authored
simplify-boolean-expression is now emitted for old style ternaries with first value being falsy in boolean context (#1560) Closes #1559
-
Łukasz Rogalski authored
* parametrize count of suggestions based on config parameter * fix tests on Appveyor
-
Claudiu Popa authored
Close #1608
-
- Jul 23, 2017
-
-
guillaume2 authored
Close #1479
-
Claudiu Popa authored
-
hippo91 authored
Added stop-iteration-return Following the recommendations of PEP479 ,a new Python 3.0 checker was added to warn about raising a StopIteration inside a generator. Raising a StopIteration inside a generator may be due a direct call to `raise StopIteration`. Close #1385
-
- Jul 21, 2017
-
-
Martin von Gagern authored
-
Claudiu Popa authored
Added a couple of new Python 3 checks for accessing dict methods in non-iterable context. Part of #377
-
- Jul 20, 2017
-
-
Claudiu Popa authored
Protocol checks (not-a-mapping, not-an-iterable and co.) aren't emitted on classes with dynamic getattr. Close #1579
-
Claudiu Popa authored
This message is emitted when the threading.Thread class does not receive the target argument, but receives just one argument, which is by default the group parameter. Close #1327
-
- Jul 19, 2017
-
-
Claudiu Popa authored
-
Erik Wright authored
Disabling 'ungrouped-imports' for a single line now prevents that line from triggering violations on subsequent lines.
-
Erik Wright authored
Disabling 'wrong-import-order' or 'wrong-import-position' for a single line now prevents that line from triggering violations on subsequent lines.
-