Skip to content

Commit

Permalink
Backport PR jupyter#422: Clarify stop_on_error documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk authored and MeeseeksDev[bot] committed Feb 15, 2019
1 parent ed4716e commit 36cfaf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/messaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ Message type: ``execute_request``::
# should not send these messages.
'allow_stdin' : True,

# A boolean flag, which, if True, does not abort the execution queue, if an exception is encountered.
# This allows the queued execution of multiple execute_requests, even if they generate exceptions.
'stop_on_error' : False,
# A boolean flag, which, if True, aborts the execution queue if an exception is encountered.
# If False, queued execute_requests will execute even if this request generates an exception.
'stop_on_error' : True,
}

.. versionchanged:: 5.0
Expand Down

0 comments on commit 36cfaf4

Please sign in to comment.