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