Homogenize the "optional OS services" menu
This commit is contained in:
parent
f10f162db9
commit
64a467d790
|
@ -1,5 +1,5 @@
|
||||||
:mod:`concurrent.futures` --- Concurrent computation
|
:mod:`concurrent.futures` --- Launching parallel tasks
|
||||||
====================================================
|
======================================================
|
||||||
|
|
||||||
.. module:: concurrent.futures
|
.. module:: concurrent.futures
|
||||||
:synopsis: Execute computations concurrently using threads or processes.
|
:synopsis: Execute computations concurrently using threads or processes.
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
:mod:`multiprocessing` --- Process-based "threading" interface
|
:mod:`multiprocessing` --- Process-based parallelism
|
||||||
==============================================================
|
====================================================
|
||||||
|
|
||||||
.. module:: multiprocessing
|
.. module:: multiprocessing
|
||||||
:synopsis: Process-based "threading" interface.
|
:synopsis: Process-based parallelism.
|
||||||
|
|
||||||
|
|
||||||
Introduction
|
Introduction
|
||||||
|
|
|
@ -14,11 +14,11 @@ some other systems as well (e.g. Windows). Here's an overview:
|
||||||
|
|
||||||
select.rst
|
select.rst
|
||||||
threading.rst
|
threading.rst
|
||||||
dummy_threading.rst
|
|
||||||
_thread.rst
|
|
||||||
_dummy_thread.rst
|
|
||||||
concurrent.futures.rst
|
|
||||||
multiprocessing.rst
|
multiprocessing.rst
|
||||||
|
concurrent.futures.rst
|
||||||
mmap.rst
|
mmap.rst
|
||||||
readline.rst
|
readline.rst
|
||||||
rlcompleter.rst
|
rlcompleter.rst
|
||||||
|
dummy_threading.rst
|
||||||
|
_thread.rst
|
||||||
|
_dummy_thread.rst
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
:mod:`threading` --- Higher-level threading interface
|
:mod:`threading` --- Thread-based parallelism
|
||||||
=====================================================
|
=============================================
|
||||||
|
|
||||||
.. module:: threading
|
.. module:: threading
|
||||||
:synopsis: Higher-level threading interface.
|
:synopsis: Thread-based parallelism.
|
||||||
|
|
||||||
|
|
||||||
This module constructs higher-level threading interfaces on top of the lower
|
This module constructs higher-level threading interfaces on top of the lower
|
||||||
|
|
Loading…
Reference in New Issue