summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-09-01 08:43:42 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-01 09:10:11 +0200
commit832db06b0493784f308a2d77c9365f5ad7156033 (patch)
tree17fa5453c16934fafeb4a2c7b55ba1ed58333ee4 /doc
parent5f96098d658fd9c1b59c5f1675033485e1b3bad0 (diff)
downloadpylint-git-832db06b0493784f308a2d77c9365f5ad7156033.tar.gz
Extend ``unspecified-encoding`` checker
The ``unspecified-encoding`` checker now also checks calls to ``pathlib.Path().read_text()`` and ``pathlib.Path().write_text()`` This closes #4945
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.11.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/whatsnew/2.11.rst b/doc/whatsnew/2.11.rst
index 8a9161c71..6a22d5ba7 100644
--- a/doc/whatsnew/2.11.rst
+++ b/doc/whatsnew/2.11.rst
@@ -60,3 +60,8 @@ Other Changes
* Fix false positive ``dict-iter-missing-items`` for dictionaries only using tuples as keys
Closes #3282
+
+* The ``unspecified-encoding`` checker now also checks calls to ``pathlib.Path().read_text()``
+ and ``pathlib.Path().write_text()``
+
+ Closes #4945