Skip to content

Commit 3c2ab39

Browse files
committed
Fix linting by ignoring an error - this branch is a dead end. Add change note for #495
1 parent 5ffaf30 commit 3c2ab39

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGES.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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+
517
3.2.4 (2025-08-07)
618
==================
719

src/greenlet/tests/leakcheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)