diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-10-02 15:37:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 15:37:40 (GMT) |
commit | b723b8a13d6b74b0fa1bf89149f314e26a93be9d (patch) | |
tree | 2134501782dd3a2ca3deb26e5efefd852306a744 /Lib/test/test_importlib/test_locks.py | |
parent | 84f9da9ab52e476224baac8786ab104e80ff77ba (diff) | |
download | cpython-b723b8a13d6b74b0fa1bf89149f314e26a93be9d.zip cpython-b723b8a13d6b74b0fa1bf89149f314e26a93be9d.tar.gz cpython-b723b8a13d6b74b0fa1bf89149f314e26a93be9d.tar.bz2 |
[3.12] gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (GH-109629) (#109898)
gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (GH-109629)
---------
(cherry picked from commit 0eb98837b60bc58e57ad3e2b35c6b0e9ab634678)
Co-authored-by: Antoine Pitrou <antoine@python.org>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_importlib/test_locks.py')
-rw-r--r-- | Lib/test/test_importlib/test_locks.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_importlib/test_locks.py b/Lib/test/test_importlib/test_locks.py index ba9cf51..7091c36 100644 --- a/Lib/test/test_importlib/test_locks.py +++ b/Lib/test/test_importlib/test_locks.py @@ -29,6 +29,8 @@ class ModuleLockAsRLockTests: test_timeout = None # _release_save() unsupported test_release_save_unacquired = None + # _recursion_count() unsupported + test_recursion_count = None # lock status in repr unsupported test_repr = None test_locked_repr = None |