summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-08-06 10:00:32 +0200
committerGitHub <noreply@github.com>2021-08-06 10:00:32 +0200
commit865765ca78b43829d98c6c4424b6364c63925186 (patch)
treec8eaf3b30a0172cfc3b622350f4bcb7a066ef93b /ChangeLog
parent7d84a322afb129045b5c82790bad56b7d7f4fbc3 (diff)
downloadpylint-git-865765ca78b43829d98c6c4424b6364c63925186.tar.gz
Add ``redundant-u-string-prefix`` checker (#4804)
* Add ``redundant-u-string-prefix`` checker This adds a checker for u-prefixes for strings, as used in Python 2. It only work in python 3.8 and above. Closes #4102
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e8252b8c..2effa560f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -89,10 +89,14 @@ Release date: TBA
Closes #626
-* Add ``disable-next`` option: allows using `# pylint: disable-next=msgid` to disable a message for the following line
+* Added ``disable-next`` option: allows using `# pylint: disable-next=msgid` to disable a message for the following line
Closes #1682
+* Added ``redundant-u-string-prefix`` checker: Emitted when the u prefix is added to a string
+
+ Closes #4102
+
What's New in Pylint 2.9.6?
===========================