Skip to content
Merged
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
4 changes: 3 additions & 1 deletion _docs/background.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ called `the_task`. This variable can be used in the following ways:
then return `True`.
* `the_task.get()` returns the result of the task. If the task has
not been completed yet, the system will wait until the task is
completed and then return the result of the task.
completed and then return the result of the task. `the_task.get()`
returns `None` if the task or an action triggered by the task
(including a `background_error_action`) raised an error.
* `the_task.result()` is like `.get()`, except it returns an object
containing details about the result of the task. This is useful
primarily if the task ended prematurely because an exception was
Expand Down