[Zodb-checkins] CVS: ZODB3/ZEO - ClientStub.py:1.7

Guido van Rossum guido@python.org
Thu, 29 Aug 2002 12:15:51 -0400


Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv10518

Modified Files:
	ClientStub.py 
Log Message:
Add a comment explaining the discrepancy between on-the-wire method
names and Python method names.  (Checked this in on the trace branch
by mistake.)


=== ZODB3/ZEO/ClientStub.py 1.6 => 1.7 ===
--- ZODB3/ZEO/ClientStub.py:1.6	Wed Aug 28 17:17:30 2002
+++ ZODB3/ZEO/ClientStub.py	Thu Aug 29 12:15:50 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