You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Doc/library/multiprocessing.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,8 @@ distributing the input data across processes (data parallelism). The following
30
30
example demonstrates the common practice of defining such functions in a module
31
31
so that child processes can successfully import that module. This basic example
32
32
of data parallelism using :class:`~multiprocessing.pool.Pool`, ::
33
+
Note that a similar high-level interface for thread-based parallelism is provided by the :class:`concurrent.futures.ThreadPoolExecutor` class in the :mod:`concurrent.futures` module.
0 commit comments