[py-svn] r38124 - py/trunk/py/test/rsession
fijal at codespeak.net
fijal at codespeak.net
Wed Feb 7 22:35:15 CET 2007
Author: fijal
Date: Wed Feb 7 22:35:14 2007
New Revision: 38124
Modified:
py/trunk/py/test/rsession/executor.py
Log:
No, this is needed for C-c to work.
Modified: py/trunk/py/test/rsession/executor.py
==============================================================================
--- py/trunk/py/test/rsession/executor.py (original)
+++ py/trunk/py/test/rsession/executor.py Wed Feb 7 22:35:14 2007
@@ -29,6 +29,8 @@
outcome = Outcome()
except Skipped, e:
outcome = Outcome(skipped=str(e))
+ except (SystemExit, KeyboardInterrupt):
+ raise
except:
excinfo = py.code.ExceptionInfo()
if isinstance(self.item, py.test.Function):
More information about the py-svn
mailing list