[svn r38124] No, this is needed for C-c to work.

--HG--
branch : trunk
This commit is contained in:
fijal 2007-02-07 22:35:14 +01:00
parent 356b831208
commit ee04997eb2
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ class RunExecutor(object):
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):