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]: |