[concurrent.futures.interpreter] Update to 3.14.0b4 (#14522)

This commit is contained in:
Semyon Moroz
2025-08-04 18:59:26 -07:00
committed by GitHub
parent f57e8b1f26
commit 084742b431
4 changed files with 22 additions and 51 deletions
+2 -2
View File
@@ -34,8 +34,8 @@ def exec(
def call(
id: SupportsIndex,
callable: Callable[..., _R],
args: tuple[object, ...] | None = None,
kwargs: dict[str, object] | None = None,
args: tuple[Any, ...] | None = None,
kwargs: dict[str, Any] | None = None,
*,
restrict: bool = False,
) -> tuple[_R, types.SimpleNamespace]: ...