From 62d0318eb5a9a209617f0fe86d42a3dc50138e57 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 27 Aug 2022 14:30:10 +0200 Subject: [PATCH] Fix 2.15 changelog (#7369) --- doc/whatsnew/2/2.15/index.rst | 4 ++++ doc/whatsnew/fragments/7322.false-positive | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 doc/whatsnew/fragments/7322.false-positive diff --git a/doc/whatsnew/2/2.15/index.rst b/doc/whatsnew/2/2.15/index.rst index 6f9b0dbff4..420258c5ab 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 `_) +- Improve default TypeVar name regex. Disallow names prefixed with ``T``. + E.g. use ``AnyStrT`` instead of ``TAnyStr``. + + Refs #7322 (`#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 0c196ada0d..0000000000 --- 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