[Zodb-checkins] CVS: ZODB3/ZEO - ClientStub.py:1.5.2.2
Guido van Rossum
guido@python.org
Thu, 29 Aug 2002 12:14:09 -0400
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv10089
Modified Files:
Tag: zeo_trace_branch
ClientStub.py
Log Message:
Add a comment explaining the discrepancy between on-the-wire method
names and Python method names.
=== ZODB3/ZEO/ClientStub.py 1.5.2.1 => 1.5.2.2 ===
--- ZODB3/ZEO/ClientStub.py:1.5.2.1 Wed Aug 28 17:42:40 2002
+++ ZODB3/ZEO/ClientStub.py Thu Aug 29 12:14:08 2002
@@ -14,6 +14,12 @@
"""Stub for interface exported by ClientStorage"""
class ClientStorage:
+
+ # The on-the-wire names of some of the methods don't match the
+ # Python method names. That's because the on-the-wire protocol
+ # was fixed for ZEO 2 and we don't want to change it. There are
+ # some aliases in ClientStorage.py to make up for this.
+
def __init__(self, rpc):
self.rpc = rpc