##// END OF EJS Templates
Merge pull request #11291 from minrk/catch-base-exception...
Matthias Bussonnier -
r24545:a286125c merge
parent child Browse files
Show More
@@ -2841,7 +2841,7 b' class InteractiveShell(SingletonConfigurable):'
2841
2841
2842 try:
2842 try:
2843 return runner(coro)
2843 return runner(coro)
2844 except Exception as e:
2844 except BaseException as e:
2845 info = ExecutionInfo(raw_cell, store_history, silent, shell_futures)
2845 info = ExecutionInfo(raw_cell, store_history, silent, shell_futures)
2846 result = ExecutionResult(info)
2846 result = ExecutionResult(info)
2847 result.error_in_exec = e
2847 result.error_in_exec = e
General Comments 0
You need to be logged in to leave comments. Login now