]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-44422: Fix threading.enumerate() reentrant call (GH-26727)
authorVictor Stinner <vstinner@python.org>
Tue, 15 Jun 2021 14:14:24 +0000 (16:14 +0200)
committerGitHub <noreply@github.com>
Tue, 15 Jun 2021 14:14:24 +0000 (16:14 +0200)
commit243fd01047ddce1a7eb0f99a49732d123e942c63
tree5985800b6c15bf0c5b2ac337fde5922a173d5aa3
parent1cd3d859a49b047dd08abb6f44f0539564d3525a
bpo-44422: Fix threading.enumerate() reentrant call (GH-26727)

The threading.enumerate() function now uses a reentrant lock to
prevent a hang on reentrant call.
Lib/threading.py
Misc/NEWS.d/next/Library/2021-06-14-23-28-17.bpo-44422.BlWOgv.rst [new file with mode: 0644]