Skip to content

Commit 8a3c451

Browse files
authored
[threading] Ignore Condition.locked in Python 3.15 (#16279)
1 parent dafdc19 commit 8a3c451

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

stdlib/@tests/stubtest_allowlists/py315.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ importlib._abc.Loader.load_module
2323
importlib._bootstrap_external.NamespacePath
2424
importlib.resources._common.package_to_anchor
2525
mailbox._ProxyFile.__class_getitem__
26-
threading.Condition.locked
2726

2827
# =============================================================
2928
# Allowlist entries that cannot or should not be fixed; >= 3.15
@@ -86,6 +85,9 @@ concurrent.interpreters._crossinterp.UnboundItem.singleton
8685
concurrent.interpreters._crossinterp.UNBOUND_ERROR
8786
concurrent.interpreters._crossinterp.UNBOUND_REMOVE
8887

88+
# Condition functions are exported in __init__
89+
threading.Condition.locked
90+
8991
# Assigning `__new__` causes `func` not to get recognized.
9092
functools.partialmethod.__new__
9193

0 commit comments

Comments
 (0)