eric6/DebugClients/Python/DebugBase.py

changeset 8257
28146736bbfc
parent 8240
93b8a353c4bf
child 8273
698ae46f40a4
equal deleted inserted replaced
8256:26a8b92aeabd 8257:28146736bbfc
920 exctype = self.__extractExceptionName(exctype) 920 exctype = self.__extractExceptionName(exctype)
921 921
922 if excval is None: 922 if excval is None:
923 excval = '' 923 excval = ''
924 924
925 if unhandled: 925 exctypetxt = (
926 exctypetxt = "unhandled {0!s}".format(str(exctype)) 926 "unhandled {0!s}".format(str(exctype))
927 else: 927 if unhandled else
928 exctypetxt = str(exctype) 928 str(exctype)
929 929 )
930 excvaltxt = str(excval) 930 excvaltxt = str(excval)
931 931
932 # Don't step into libraries, which are used by our debugger methods 932 # Don't step into libraries, which are used by our debugger methods
933 if exctb is not None: 933 if exctb is not None:
934 self.stop_everywhere = False 934 self.stop_everywhere = False

eric ide

mercurial