[svn r37938] rename report.py to repevent.py (report events)

also to ease the completion ambiguity a bit
(and to avoid having to read "reporter" and "report"
next to each other)

--HG--
branch : trunk
This commit is contained in:
hpk
2007-02-05 00:34:23 +01:00
parent fb2613135b
commit b68bc5b373
15 changed files with 98 additions and 98 deletions

View File

@@ -5,7 +5,7 @@ import py, os
from py.__.test.rsession.outcome import Outcome, ReprOutcome
from py.__.test.rsession.box import Box
from py.__.test.rsession import report
from py.__.test.rsession import repevent
from py.__.test.outcome import Skipped, Failed
class RunExecutor(object):
@@ -41,7 +41,7 @@ class RunExecutor(object):
outcome = Outcome(excinfo=excinfo, setupfailure=False)
if self.usepdb:
if self.reporter is not None:
self.reporter(report.ImmediateFailure(self.item,
self.reporter(repevent.ImmediateFailure(self.item,
ReprOutcome(outcome.make_repr
(self.config.option.tbstyle))))
import pdb