summaryrefslogtreecommitdiff
path: root/docs/index.rst
diff options
context:
space:
mode:
authorbrian.quinlan <devnull@localhost>2009-10-25 09:13:58 +0000
committerbrian.quinlan <devnull@localhost>2009-10-25 09:13:58 +0000
commit8962ac0331e5b2bf45f0fb710a571f1cedcc5228 (patch)
tree21b6df76165e0524046a77baef56471a20d660e7 /docs/index.rst
parent968b9f884d1db843a600618c1a6e4a09e624df27 (diff)
downloadfutures-8962ac0331e5b2bf45f0fb710a571f1cedcc5228.tar.gz
Removed the 'experimental' label from ProcessPoolExecutor
Diffstat (limited to 'docs/index.rst')
-rw-r--r--docs/index.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/index.rst b/docs/index.rst
index cb51ae9..4425284 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -2,7 +2,7 @@
===========================================
.. module:: futures
- :synopsis: Execute computations asynchronously using threads or (experimentally) processes.
+ :synopsis: Execute computations asynchronously using threads or processes.
The :mod:`futures` module provides a high-level interface for asynchronously
executing functions and methods.
@@ -17,8 +17,7 @@ Executor Objects
:class:`Executor` is an abstract class that provides methods to execute calls
asynchronously. It should not be used directly, but through its two
-subclasses: :class:`ThreadPoolExecutor` and (experimental)
-:class:`ProcessPoolExecutor`.
+subclasses: :class:`ThreadPoolExecutor` and :class:`ProcessPoolExecutor`.
.. method:: Executor.run_to_futures(calls, timeout=None, return_when=ALL_COMPLETED)