From 85ab7bd1b824e116de0f650819061892190fbfe0 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Thu, 10 Sep 2026 00:33:09 +0200 Subject: [PATCH] Add description of recursion errors handling to 26.9.9 changelog It was missing in the original PR. --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index c21cdf6..d08f66a 100644 --- a/README.rst +++ b/README.rst @@ -530,6 +530,7 @@ Change Log * B902: don't raise a false positive on a metaclass defined with a dotted base such as `abc.ABCMeta` or `enum.EnumMeta` (#411) * B913: Add an optional check for unused ``_`` targets in ``zip()`` loops (#545) * B912: only emit on Python 3.14+ where ``map()`` supports ``strict=`` (#548) +* Recursion errors raised during rules evaluation show a message instead of a raw traceback (#560) 25.11.29 ~~~~~~~~