DebugClients/Python/DebugBase.py

changeset 4080
d4ba5fab5557
parent 4063
b7269498aa95
child 4293
125a75cfd249
equal deleted inserted replaced
4079:a3319822d303 4080:d4ba5fab5557
634 @param exctype the type of the exception 634 @param exctype the type of the exception
635 @param excval data about the exception 635 @param excval data about the exception
636 @param exctb traceback for the exception 636 @param exctb traceback for the exception
637 @param unhandled flag indicating an uncaught exception 637 @param unhandled flag indicating an uncaught exception
638 """ 638 """
639
640 if exctype in [GeneratorExit, StopIteration]: 639 if exctype in [GeneratorExit, StopIteration]:
641 # ignore these 640 # ignore these
642 return 641 return
643 642
644 if exctype in [SystemExit, bdb.BdbQuit]: 643 if exctype in [SystemExit, bdb.BdbQuit]:

eric ide

mercurial