Homogenize the "optional OS services" menu

This commit is contained in:
Antoine Pitrou 2010-12-12 20:34:49 +00:00
parent f10f162db9
commit 64a467d790
4 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
:mod:`concurrent.futures` --- Concurrent computation
====================================================
:mod:`concurrent.futures` --- Launching parallel tasks
======================================================
.. module:: concurrent.futures
:synopsis: Execute computations concurrently using threads or processes.

View File

@ -1,8 +1,8 @@
:mod:`multiprocessing` --- Process-based "threading" interface
==============================================================
:mod:`multiprocessing` --- Process-based parallelism
====================================================
.. module:: multiprocessing
:synopsis: Process-based "threading" interface.
:synopsis: Process-based parallelism.
Introduction

View File

@ -14,11 +14,11 @@ some other systems as well (e.g. Windows). Here's an overview:
select.rst
threading.rst
dummy_threading.rst
_thread.rst
_dummy_thread.rst
concurrent.futures.rst
multiprocessing.rst
concurrent.futures.rst
mmap.rst
readline.rst
rlcompleter.rst
dummy_threading.rst
_thread.rst
_dummy_thread.rst

View File

@ -1,8 +1,8 @@
:mod:`threading` --- Higher-level threading interface
=====================================================
:mod:`threading` --- Thread-based parallelism
=============================================
.. module:: threading
:synopsis: Higher-level threading interface.
:synopsis: Thread-based parallelism.
This module constructs higher-level threading interfaces on top of the lower