File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 22 Changes
33=========
44
5+ 3.2.5 (unreleased)
6+ ==================
7+
8+ .. note ::
9+
10+ The 3.2.x series will be the last to support Python 3.9.
11+
12+ - Fix a crash on Python 3.9 and 3.10 if there are active greenlets during
13+ interpreter shutdown. See `PR 495
14+ <https://github.com/python-greenlet/greenlet/pull/495> `_ by Nicolas
15+ Bouvrette.
16+
5173.2.4 (2025-08-07)
618==================
719
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def _include_object_p(self, obj):
172172 # to try to reverse the order of arguments...which leads
173173 # to the explosion of mock objects. We don't want that, so we implement
174174 # the check manually.
175- if kind == type (self ._include_object_p ):
175+ if kind == type (self ._include_object_p ): # pylint: disable=unidiomatic-typecheck
176176 try :
177177 # pylint:disable=not-callable
178178 exact_method_equals = self ._include_object_p .__eq__ (obj )
You can’t perform that action at this time.
0 commit comments