[svn r63908] first step in only allowing keyword arguments to plugin calls

--HG--
branch : trunk
This commit is contained in:
hpk
2009-04-09 18:55:11 +02:00
parent f8fc229917
commit fb7ff9a8c2
6 changed files with 28 additions and 14 deletions

View File

@@ -22,6 +22,7 @@ class TXNode(object):
self._down = False
def notify(self, eventname, *args, **kwargs):
assert not args
self.putevent((eventname, args, kwargs))
def callback(self, eventcall):