diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-10-15 12:55:19 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-10-15 12:55:19 (GMT) |
commit | 916bd38a06996b1d91969d6705d03a6c9993c1c8 (patch) | |
tree | b25099efaa739db9bb7f94becce95e83c93c46a6 /Doc/library/concurrent.futures.rst | |
parent | 8dbf629bbd678da2e818bf404657fadba6dfa23f (diff) | |
download | cpython-916bd38a06996b1d91969d6705d03a6c9993c1c8.zip cpython-916bd38a06996b1d91969d6705d03a6c9993c1c8.tar.gz cpython-916bd38a06996b1d91969d6705d03a6c9993c1c8.tar.bz2 |
Fixing some sphinx inline directives - detected using ``make check``.
Diffstat (limited to 'Doc/library/concurrent.futures.rst')
-rw-r--r-- | Doc/library/concurrent.futures.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index e17e589..a7a2c39 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -283,12 +283,12 @@ The :class:`Future` class encapsulates the asynchronous execution of a callable. before executing the work associated with the :class:`Future` and by unit tests. - If the method returns `False` then the :class:`Future` was cancelled, + If the method returns ``False`` then the :class:`Future` was cancelled, i.e. :meth:`Future.cancel` was called and returned `True`. Any threads waiting on the :class:`Future` completing (i.e. through :func:`as_completed` or :func:`wait`) will be woken up. - If the method returns `True` then the :class:`Future` was not cancelled + If the method returns ``True`` then the :class:`Future` was not cancelled and has been put in the running state, i.e. calls to :meth:`Future.running` will return `True`. |