src/eric7/DebugClients/Python/DebugBase.py

branch
eric7
changeset 10321
4a017fdf316f
parent 10290
a362e5d5bf66
child 10331
c1a2ff7e3575
equal deleted inserted replaced
10320:ff28050f5dec 10321:4a017fdf316f
875 @type bool 875 @type bool
876 """ 876 """
877 exctype, excval, exctb = excinfo 877 exctype, excval, exctb = excinfo
878 878
879 if ( 879 if (
880 exctype in [GeneratorExit, StopIteration] and unhandled is False 880 not unhandled
881 and (
882 exctype in [GeneratorExit, StopIteration]
883 or not self._dbgClient.reportAllExceptions
884 )
881 ) or exctype == SystemExit: 885 ) or exctype == SystemExit:
882 # ignore these 886 # ignore these
883 return 887 return
884 888
885 if exctype in [SyntaxError, IndentationError]: 889 if exctype in [SyntaxError, IndentationError]:

eric ide

mercurial