Skip to content
Snippets Groups Projects
Commit 6ef5895e authored by Martin's avatar Martin Committed by Claudiu Popa
Browse files

Add back accidentally removed changelog entry (#1737)

Change log entry added in #1733 was accidentally removed in commit
996b3fb5 in PR #1726

Adding changelog entry back.

Fixes: #1301
parent 7f6bae95
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -6,6 +6,19 @@ What's New in Pylint 1.8?
 
* Respect disable=... in config file when running with --py3k.
 
* New warning `shallow-copy-environ` added
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 copy may have unexpected effects on os.environ
Instead of copy.copy(os.environ) method os.environ.copy() should be
used.
See https://bugs.python.org/issue15373 for details.
Close #1301
* Do not display no-absolute-import warning multiple times per file.
 
* `trailing-comma-tuple` refactor check now extends to assignment with
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment