Skip to content

Commit 6ef5895

Browse files
MartinBastiPCManticore
authored andcommitted
Add back accidentally removed changelog entry (#1737)
Change log entry added in #1733 was accidentally removed in commit 996b3fb in PR #1726 Adding changelog entry back. Fixes: #1301
1 parent 7f6bae9 commit 6ef5895

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ What's New in Pylint 1.8?
66

77
* Respect disable=... in config file when running with --py3k.
88

9+
* New warning `shallow-copy-environ` added
10+
11+
Shallow copy of os.environ doesn't work as people may expect. os.environ
12+
is not a dict object but rather a proxy object, so any changes made
13+
on copy may have unexpected effects on os.environ
14+
15+
Instead of copy.copy(os.environ) method os.environ.copy() should be
16+
used.
17+
18+
See https://bugs.python.org/issue15373 for details.
19+
20+
Close #1301
21+
922
* Do not display no-absolute-import warning multiple times per file.
1023

1124
* `trailing-comma-tuple` refactor check now extends to assignment with

0 commit comments

Comments
 (0)