summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorLouis Sautier <sautier.louis@gmail.com>2021-02-28 17:50:05 +0100
committerGitHub <noreply@github.com>2021-02-28 17:50:05 +0100
commitcc8d9185d1b0ca79ed49efd0ee2d3cae5b1cacbb (patch)
treef7b9eea94aacd3a80bbcaaf1837ea75c3d77fea4 /ChangeLog
parent41d2349c7b84714539a9979b5344294029c984ab (diff)
downloadpylint-git-cc8d9185d1b0ca79ed49efd0ee2d3cae5b1cacbb.tar.gz
Properly strip dangerous sys.path entries (not just the first one) (#4153)
51c646bf70a6e0a86492bfd2ddd1885671d64d67 only stripped the first bad sys.path entry, causing problems when PYTHONPATH starts or ends with a colon. Closes: https://github.com/PyCQA/pylint/issues/3636
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d3976d1e3..953265455 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,9 @@ What's New in Pylint 2.7.2?
* Fix False Positive on `Enum.__members__.items()`, `Enum.__members__.values`, and `Enum.__members__.keys`
Closes #4123
+* Properly strip dangerous sys.path entries (not just the first one)
+
+ Closes #3636
What's New in Pylint 2.7.1?
===========================