[svn r63547] renaming all event consumers to use the "__" convention that

is also used for funcargs.

--HG--
branch : trunk
This commit is contained in:
hpk
2009-04-02 19:58:51 +02:00
parent 575935a4aa
commit 069ab6ff5f
14 changed files with 77 additions and 78 deletions
+2 -2
View File
@@ -139,10 +139,10 @@ def slave_runsession(channel, config, fullwidth, hasmarkup):
session.shouldclose = channel.isclosed
class Failures(list):
def pyevent_itemtestreport(self, ev):
def pyevent__itemtestreport(self, ev):
if ev.failed:
self.append(ev)
pyevent_collectionreport = pyevent_itemtestreport
pyevent__collectionreport = pyevent__itemtestreport
failreports = Failures()
session.bus.register(failreports)