DebugClients/Python/DebugBase.py

changeset 5761
f9e1e4e50b33
parent 5757
9a4e28d0b3c4
child 5966
3325ecd87c7c
equal deleted inserted replaced
5760:80d0eb2c413d 5761:f9e1e4e50b33
795 @type bool 795 @type bool
796 """ 796 """
797 exctype, excval, exctb = excinfo 797 exctype, excval, exctb = excinfo
798 798
799 if ((exctype in [GeneratorExit, StopIteration] and 799 if ((exctype in [GeneratorExit, StopIteration] and
800 unhandled == False) or 800 unhandled is False) or
801 exctype == SystemExit): 801 exctype == SystemExit):
802 # ignore these 802 # ignore these
803 return 803 return
804 804
805 if exctype in [SyntaxError, IndentationError]: 805 if exctype in [SyntaxError, IndentationError]:

eric ide

mercurial