794 @keyparam unhandled flag indicating an uncaught exception |
794 @keyparam unhandled flag indicating an uncaught exception |
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, SystemExit]: |
799 if ((exctype in [GeneratorExit, StopIteration] and |
|
800 unhandled == False) or |
|
801 exctype == SystemExit): |
800 # ignore these |
802 # ignore these |
801 return |
803 return |
802 |
804 |
803 if exctype in [SyntaxError, IndentationError]: |
805 if exctype in [SyntaxError, IndentationError]: |
804 try: |
806 try: |