summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2022-08-27 14:30:10 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-09-06 23:33:59 +0200
commite63a35207e447a1e714893a5b803706a218e1f99 (patch)
tree4b00f81973b126e94f2a6e654329cb6d321c8ef2
parent5b85ecc72663edff1d5f3b5d7e1478a041859c11 (diff)
downloadpylint-git-e63a35207e447a1e714893a5b803706a218e1f99.tar.gz
Fix 2.15 changelog (#7369)
-rw-r--r--doc/whatsnew/2/2.15/index.rst4
-rw-r--r--doc/whatsnew/fragments/7322.false-positive4
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/whatsnew/2/2.15/index.rst b/doc/whatsnew/2/2.15/index.rst
index 6f9b0dbff..420258c5a 100644
--- a/doc/whatsnew/2/2.15/index.rst
+++ b/doc/whatsnew/2/2.15/index.rst
@@ -72,6 +72,10 @@ False Positives Fixed
- Fix `undefined-loop-variable` with `break` and `continue` statements in `else` blocks.
Refs #7311 (`#7311 <https://github.com/PyCQA/pylint/issues/7311>`_)
+- Improve default TypeVar name regex. Disallow names prefixed with ``T``.
+ E.g. use ``AnyStrT`` instead of ``TAnyStr``.
+
+ Refs #7322 (`#7322 <https://github.com/PyCQA/pylint/issues/7322>`_`)
False Negatives Fixed
diff --git a/doc/whatsnew/fragments/7322.false-positive b/doc/whatsnew/fragments/7322.false-positive
deleted file mode 100644
index 0c196ada0..000000000
--- a/doc/whatsnew/fragments/7322.false-positive
+++ /dev/null
@@ -1,4 +0,0 @@
-Improve default TypeVar name regex. Disallow names prefixed with ``T``.
-E.g. use ``AnyStrT`` instead of ``TAnyStr``.
-
-Refs #7322