[Zodb-checkins] CVS: ZODB3/ZEO - ServerStub.py:1.12.12.2
Jeremy Hylton
jeremy at zope.com
Wed May 28 15:34:19 EDT 2003
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv4882/ZEO
Modified Files:
Tag: ZODB3-auth-branch
ServerStub.py
Log Message:
Don't use apply.
=== ZODB3/ZEO/ServerStub.py 1.12.12.1 => 1.12.12.2 ===
--- ZODB3/ZEO/ServerStub.py:1.12.12.1 Tue Apr 29 16:02:54 2003
+++ ZODB3/ZEO/ServerStub.py Wed May 28 14:34:18 2003
@@ -147,5 +147,6 @@
def __init__(self, rpc, name):
self.rpc = rpc
self.name = name
+
def call(self, *a, **kwa):
- return apply(self.rpc.call, (self.name,)+a, kwa)
+ return self.rpc.call(self.name, *a, **kwa)
More information about the Zodb-checkins
mailing list