mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-08 22:36:18 +08:00
f36d7a3cd3
* Fix type declarations for multiprocessing.pool.ThreadPool The existing incomplete type declarations were replaced by a copy of multiprocessing.Pool's declarations, suitably modified. Fixes #683. * Change iterable type to Iterable[Iterable[Any]] in starmap multiprocessing.Pool and multiprocessing.pool.ThreadPool have starmap and related methods, where the iterable argument is expected to yield iterables. The type declarations now reflect this.