File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ class Executor(LoggingConfigurable):
23
23
help = dedent (
24
24
"""
25
25
The time to wait (in seconds) for output from executions.
26
- If a cell execution takes longer, an exception (TimeoutError
27
- on python 3+, RuntimeError on python 2) is raised.
26
+ If a cell execution takes longer, a TimeoutError is raised.
28
27
29
28
`None` or `-1` will disable the timeout. If `timeout_func` is set,
30
29
it overrides `timeout`.
@@ -39,9 +38,8 @@ class Executor(LoggingConfigurable):
39
38
"""
40
39
A callable which, when given the cell source as input,
41
40
returns the time to wait (in seconds) for output from cell
42
- executions. If a cell execution takes longer, an exception
43
- (TimeoutError on python 3+, RuntimeError on python 2) is
44
- raised.
41
+ executions. If a cell execution takes longer, a TimeoutError
42
+ is raised.
45
43
46
44
Returning `None` or `-1` will disable the timeout for the cell.
47
45
Not setting `timeout_func` will cause the preprocessor to
You can’t perform that action at this time.
0 commit comments