Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/concurrent.futures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ The :class:`Future` class encapsulates the asynchronous execution of a callable.
running.

Added callables are called in the order that they were added and are
always called in a thread belonging to the process that added them. If
always called in :meth:`Future.set_result` is called according to its source. If
the callable raises an :exc:`Exception` subclass, it will be logged and
ignored. If the callable raises a :exc:`BaseException` subclass, the
behavior is undefined.
Expand Down
Loading